function showOffice(city_id)
{
//	alert(city_id);
	new Ajax.Request(url, {
		method: 'post',
		parameters : "?city_id=" + city_id,

		onSuccess: function(transport) {
			$('offices').update(transport.responseText);
		}
	});
}
