function FormClear(FormText) {
  if (FormText.value == FormText.defaultValue) {
    FormText.value = ""
  }
}
