$(function() {
	$('#Country').change(function() {
		window.open(this.value);
	})
	$('#Country2').change(function() {
		window.open(this.value);
	})
	$('#Country3').change(function() {
		window.open(this.value);
	})
	
})