/**
 * @author ldev
 */
jQuery().ready(function(){
	jQuery('#request').click(function (){
		//alert("Request processed");
		var cellmail = jQuery('#cellmail').val();
		//alert(cellmail);
		jQuery.ajax({
			type: "POST",
			url: "includes/request.php",
			dataType: "json",
			data: "cellmail=" + cellmail,
			success: function (data)
			{
				//alert("You have successfully registered");	
			},
			error: function(XMLHttpRequest, textStatus, errorThrown)
			{
				alert(errorThrown);	
			}
		});
	});
});
