// JavaScript Document
function clearText(thefield){
  if (thefield.defaultValue == thefield.value) {
    thefield.value = '';
  }
}


//code in page

onfocus="clearText(this)" 