Try doing an Ajax request by yourself:
$('#new_suscription').submit(function(){
/*do whatever you want here*/
$.post('/subscriptions',$(this).serialize(),function(){},'script');
}
That way, you do a POST request with the form data and execute the response as a script.