//  remove default text in form field onfocus
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}