$(document).ready(function(arg) {
	// $("body select").msDropDown();
	$(".country_go").click(function() {
		if($('body select').val()=="") {
			alert("Please select a country.");
		} else {
			window.location= baseUrl + 'country/pricing/' + $('body select').val();
		}
	});
})
