//------------------------------
var document_ready_location = function() {
	//------------
	place_all	= $(".place_select");
	//------------
	place_all.change(function() {
		list_of_blocks =  Array('state','diocese','city','parish');
		list_of_z['state'] = new Array('diocese','city','parish');
		list_of_z['diocese'] = new Array('city','parish');
		list_of_z['city'] = new Array('parish');
		list_of_z['parish'] = new Array('city');
		all	= place_all;
		hidden_element = "location";
		send_to = "place";
		some_changes(this);
	});
	//------------
};
//------------------------------

