
function DoClear(theText) 
{
    if (theText.value == theText.defaultValue)
    {
         theText.value = ""
    }
 }

