$(document).ready(function() {
	$('#findDistr').submit(LoadPage)
	
});





function LoadPage() {
    var options = {
        target: $('#returnDist').empty(),

        success: function() { 
            $(this).fadeIn();


        }, 
        url: 'http://www.belislewindows.com/distributeursSystem',
        type: 'post',
        cache: false,
        data: {
			vCodePostal: $('#vCodePostal').val(),
			vLang: $('#vLang').val()
	
        }
    };


    $(this).ajaxSubmit(options); 
    return false; 
};