$(document).ready(function(){

	$('#clinic').change(function() {
	
		var clinic = $(this).val();
		var job_type = $('#profession').val();
		
		if (clinic != "" && job_type != "") {
		
			$.ajax({
				method: "get",url: "includes/_check_hiring.php",data: "clinic=" + clinic + "&job_type=" + job_type,
				beforeSend: function() {
					$("#location-status").css("display","none");
				}, 
				//complete: function() { // hide loading icon, possibly },
				success: function(html) {
					$("#location-status").html(html);
					$("#location-status").css("display","block");
				}
			});
		
		}
		
	});
	
});
