$(document).ready(function() {
	
	$('select[name="country_select"]').change(function() {
		var country = $(this).val();
		
		if(country == 'uk') {
			PostPageTracking('click', 'Intl: UK', false);
			DisplayModalBoxFromUrlPost(
				'/ajax/international_waiting_screen' + '.php', 
				{
					country: 'uk'
				}, 
				'div#modal', 
				true,
				true
			);
			
		}
		
		if(country == 'canada') {
			PostPageTracking('click', 'Intl: Canada', false);
			DisplayModalBoxFromUrlPost(
				'/ajax/international_waiting_screen' + '.php', 
				{
					country: 'canada'
				}, 
				'div#modal', 
				true,
				true
			);
		}

	});
});

