function country_select(){
	var country_select	= document.getElementById('land');
	var language_select	= document.getElementById('taal');

	var country		= country_select.options[country_select.selectedIndex].value;
	var language	= language_select.options[language_select.selectedIndex].value;

	switch(country){
		case 'be':
			if(language == 'nl'){
				document.location.href='vl/index.php';
			}
			else{
				document.location.href='wal/index.php';
			}
		break;
		case 'nl':
			document.location.href='nl/index.php';
		break;
	}
}