function clearTextBox(box, defaultValue){
  if (defaultValue=='' || box.value==defaultValue){
    box.value="";
  }  
}

