function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 


/* Example of how to use this script*/
/* <input onfocus="clearText(this)" name="firstName" type="text" size="35" value = "enter first name here" /> */
/* End Example */