	$(function(){
		$("#city").change(function(){
			if($(this).val() != ''){
				var $redirect = "/en/sellers/" + $(this).val();
				window.location = $redirect;
			}	
		});		
	});	
	
