function clearText(thefield){ //clears default values in text input fields
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}