function validate(){
$.each($('form :input'),function(){
$(this).blur().change();
});
//individual form input checking
if(!checkFormINput1() || !checkFormInput2() || !checkFormInput3() || !checkCFormpuntput4() ){
return false;
}
else{
return true;
}
}