// JavaScript Document

function initCountry(){
	$('#country').change(function(){
		document.location.href= BASE_URL + $(this).val();
	})	
}

