window.onload = function()
{
	var selector = document.getElementById('country-selector');

	selector.onchange = function()
	{
		window.location.href = this.value;
	};
};
