Site.initQueue.push(function(){
	$('#state').change(function(){
		if(this.value!==''){
			window.location = '/dealers/USA/'+Site.cleanForURL(this.value);
		}
	});
	$('#country').change(function(){
		if(this.value!==''){
			window.location = '/dealers/'+Site.cleanForURL(this.value);
		}
	});
});