$('#submit_button').live('click', function(){
	$('#ajaxForm').ajaxSubmit({
		beforeSubmit: function(a,f,o) {
			o.dataType = 'script';
		}
	});
});