// Put this code in a file called ClearField.js and reference it between the 
// <HEAD> and </HEAD> tags of any html or asp page using: 
// <Script language="JavaScript" src="Jscripts/ClearField.js"></script> 


 function doClear(theText) {
     if (theText.value == theText.defaultValue) {
         theText.value = ""
     }
 }

// add the following code to the field to be cleared when user click on the field
// onFocus="doClear(this)" 
//