$().ready(function() {
	$("#name_street_short").autocomplete(
		LOCAL_URL+"streets/load/", 
		{
			width: 160,
			selectFirst: false,
			func: function (options)
			{
				options.id_city = $('#id_city').val()
				options.id_region = $('#id_region').val();
				return options;
			}
		}
	);
	$("#name_street_short").result(function(event, data, formatted) 
	{
		if (data)
			$("#id_street_short").val(data[1]);
	});
}); 