jQuery(document).ready(function()
{
	jQuery('#city-select').bind( 'change', function() {
		window.location.href = this.value;
	});
});