

function searchform_initialize(hl,area_id,region_id,location_id,type_id,price_id)
{
	$(".search_area_id").change(function() { fillSelect(".search_region_id",regions[this.value],0); fillSelect(".search_location_id",locations[0],0); } );
	$(".search_region_id").change(function() { fillSelect(".search_location_id",locations[this.value],0); } );
	fillSelect(".search_area_id",areas,area_id);
	fillSelect(".search_region_id",regions[area_id],region_id);
	fillSelect(".search_location_id",locations[region_id],location_id);
	fillSelect(".search_type_id",types,type_id);
	fillSelect(".search_price_id",prices,price_id);
}


function fillSelect(target,ar,s)
{
	$(target).each(function() 
	{ 
		var self = this; 

		$(self).empty();

		for (var i in ar) 
		{
			$(self).append("<option value='" + i + "'" + (i==s?" selected='selected'":"") + ">" + ar[i] + "</option>");
		}
	});
}


