$(function() {
$("div#dropgo select").change(function(){
	var val = $(this).val();
	console.log(val);
	if (val && val>0)
	{
		window.location = "country_"+$(this).val()+".html";
	}
	else
	{
		console.log("Overview chosen");
		window.location = "index.html";
	}
	
	});
});
