function checkCheckBox(f){
if (f.agree.checked == false )
{
alert("Please accept the terms and conditions");
return false;
}else
return true;
}