$(function(){
	$('#submitBtn').click( 
	function(){ ajaxCall('/wp-content/themes/default-allAccess/formParser.ajax.php', '#salesForm', '#salesForm', 'html');
	return false;
	});
});

function ajaxCall( resultUrl, inputSource, targetElement, resultType ){
	$.post( resultUrl, $(inputSource).serialize(), 
													function(data){htmlLoader( data, targetElement );},
													resultType
													);
}

function htmlLoader( data, element ){
									$(element).hide().html(data).fadeIn(500);
									}