 function checkCheckBox(){
   if (document.agree.terms.checked == false){
     alert ('Please read the agreement and select the checkbox before proceed.');
     document.getElementById('term1').href="terms.php";
     return false;
     }
   else
     {
     document.getElementById('term1').href="create_account.php";
     return true;
     }
 }
