function clearField(formfield){
	if (formfield.defaultValue==formfield.value)
	formfield.value = ""
}

function validateForm(){
  if (document.getElementById("finaltick").checked == 0)
  {
	  alert("You must agree to the last check box to continue");
	  return false;
  } else {
	  return true;
  }
}

