Adding code to make text appear?

I have added the following code to the moviescript of an image in order to make it draggable and then for it to go back to it’s original spot if it is ‘let go.’

[color=red]onClipEvent(mouseDown)
{
if (this.hitTest(_root._xmouse, _root._ymouse, true))
{
this.startDrag();
}
}
onClipEvent(mouseUp)
{
if (this.hitTest(_root._xmouse, _root._ymouse, true))
{
this.stopDrag();
_root[“tomato”+this.num]._x=216.3;
_root[“tomato”+this.num]._y=196.8;

{

}
}
}[/color]

This works fine, but now I want some text (‘Green apples’ for example) to appear in a dynamic text box (called ‘info’) when the user rolls over one of these movie clips (which is called ‘tomato’).

Does anyone know what code i have to add and where to my existing code?

Thanks very much!!!