function checkCountryForm() {
	var selectedCountry = jQuery('#country_selector option:selected').attr('value');
	if(selectedCountry) {
		if(jQuery('#countryinfoform .radio input:checked').attr('value') != 'guide') {
			jQuery('#country_selector option:selected').attr('value', selectedCountry.split('|')[0]);
		} else {
			jQuery('#countryinfoform').attr('action', '/reisefuehrer.html?tg_country_code=' + selectedCountry.split('|')[1]);
		}
		return true;
	}
	return false;
}

function selectCountry(countryCode) {
	jQuery('#country_selector option:selected').removeAttr('selected');
	jQuery('#country_selector option').each(function (i) {
		if(jQuery(this).attr('value').split('|')[1] == countryCode) {
			jQuery(this).attr('selected', 'selected');
		};
    });
}