// POST all the datas! except the ViewState
jQuery.post('https://www.example.com', jQuery("#form :not(#__VIEWSTATE) > :input").serialize() ,function(data,status){
if(data[0]["Status"] == "Success"){
jQuery("#poststatus").html("Thank you!");
//alert('Thank you for registering!');
}else{
jQuery("#poststatus").html("There has been an error while accepting your submission. Please contact us.");
//alert('There was an error while accepting your submission. Please contact us.');
}
});