It's pretty simple: replace the image tag with
<p id="myText" style="position: absolute; top: 100px; left: 100px;">Blah Blah Blah</p>
And replace myImage in the JavaScript code with whatever you decide to ID your text. Actually, to be completely correct, you should use
document.getElementById("myText").style.top = whatever;, but hey.