function checkCheckBox(f) {
  if (f.vagree.checked == false) {
    alert('You must check the box to confirm you agree with the terms of the Runway Use Agreement to submit request.');
    return false;
  } else
    return true;
}

