// JavaScript Document
function clearText(theText) 
{
	if (theText.value == theText.defaultValue) 
	{
  		theText.value = ""
    }
}