function checkCheckBox(f) {
  if (f.agree.checked == false) {
    alert('You should agree to our Terms & Conditions to continue.');
    return false;
  } else
    return true;
}


