jQuery(function($) {
	$('#choose-country-form').submit(function(){ return false; });
  $('#frm-choose-country').change(function(){ top.location = '/support/offices/' + $(this).val(); });
});