
function clearTextField(thisfield) {
  if (thisfield.value == "Type name here..." || thisfield.value == "enter zip") {
    thisfield.value = "";
  }
}

