$(document).ready(function() {

	$('#international select').change(function() {
		window.location = $(this).val();
	});

});

