
	function inschrijven() {
		document.forms['inschrijven'].submit()
	}

	function changeCountry(e) {
		var country = e.value;
		var divEl = document.all ? document.all['othercountry'] : document.getElementById('othercountry');
		if (country.toLowerCase() == 'other') {
			divEl.style.display = 'block';
		} else {
			divEl.style.display = 'none';
		}
	}
