function show_countrylist(country, list) {
	document.getElementById(country).style.display = 'none';
	document.getElementById(list).style.display = 'block';
}

function hide_countrylist(country, list) {
	document.getElementById(country).style.display = 'block';
	document.getElementById(list).style.display = 'none';
}