function checkCheckBox(agree) {
  if (agree.Terms.checked == false) {
    alert('Please check the box to accept the terms and conditions');
    return false;
  } else
    return true;
}
