$(function() {
	$('#server_reply').hide();	
    $('#esignup_form').submit(function(){
    	var action = $(this).attr('action');
    	$.post(action,
			{ // ALL THE DATA:
				cid: $('#cid').val(),
				answer: $('.answer:checked').val(),
				title: $('#title').val(),
				name: $('#name').val(),
				surname: $('#surname').val(),
				email: $('#email').val(),
				dob: $('#datepicker').val(),
				country: $('#country :selected').val(),
				optin: $('#optin:checked').val(),
				tandc: $('#tandc:checked').val()
		},
		function(data){ // WHEN DATA HAS BEEN POSTED:
			if(data.result == "OK")
			{
				$('#server_reply').show().html(data.note);
				$('button[name=signUp]').hide();
			} else
			{
				$('#server_reply').slideDown(); // Cool effect
				$('#server_reply').html(data.note); // Add response to document
			}
		}, "json");
		return false;
    });
});
