function onProfileSubmit()
{
		$.post("profile_submit.html", 
			{ 
				comp_enq: $('#comp_enq').val(),
				quick_destination: $('#quick_destination').val()
			},
		  function(data){
			
			//alert(data);
			
			if (data == "Success") 
			{
				$(".success_holder").html('Thank you for submitting your enquiry.');
			}
			else 
			{
				$(".success_holder").html('Unfortunately we could not submit your enquiry right now.');
			}
		
		  });
		  
        return false;
}
