VB2005 Express.
I am using this code to draw text on a PictureBox:

Dim g As Graphics = Graphics.FromImage(PictureBox1.Image)
g.DrawString("Text",myFont, Brushes.Black, X, Y)

I would like to be able to drag the text on the picturebox until the location "looks good" then drop it there with the MouseUp event.
Is there a way to move the text after it has been drawn on the pb?
Can it be removed by "refreshing" the pb?