function ajaxcity(id) {
	new Ajax.Request('/ajax/ajaxcity.html',
	{
		method:'get',
		parameters: {locid: id},
		onSuccess: function(transport){
			$('cities').innerHTML = transport.responseText;
		},
		onFailure: function(){ alert('Something went wrong...') }
	});

}
Event.observe(window, 'load', function() {
	ajaxcity(fid);
});
