$(function(){
	$("select[name=searchCity]").change(function(){
		var city  = $(this).val(),
		    group = $(this).attr('data-group');
		if ( city ) {
			$.get('/location_search', {
				isAjax : '1',
				method : 'locationsForCity',
				searchCity : city
			}, function (html) {
				$("select[name=searchLocation][data-group=" + group + "]").html( html ).removeAttr('disabled');
			});
		}
	});
});
