/* 
 * jQuery function to populate the "Area" dropdown
 * according to the "County" dropdown selection
 */
$(document).ready(function(){ 	
	$('#county').change(function() {
		$.get('http://www.property.ie/area_lookup.php', {'area': $(this).val(), 'search_type': $('#search_type').val()}, function(data){
			$('#area').html(data)
		});
		return false;
	});
	$('#refine_loading').ajaxStart(function() {
		$(this).css('visibility','visible');
	}).ajaxStop(function() {
		$(this).css('visibility','hidden');
	});
});