$(function () {
	$("#newsletterForm").submit(function (ev) { 
		ev.preventDefault();
	    var form = $(this);
	    $.ajax({
            type: form.attr("method"),
            dataType: "html",
            url: form.attr("action"),
            data: form.serialize(),
            cache: false,
            success: function(response)
            {
            	$('.mensajeSuscripcion').html(response);
            }
	    });
	});	
});
