function trim(value){
	return value.replace(/^\s+/,'').replace(/\s+$/,'');
}

function validate(thisform){
	with(thisform){
		index=dropdown2.selectedIndex
		input=trim(dropdown2[index].innerHTML)
		if(input!=null&&input!=""&&input!="-- Selecteer uw land --")return true
		dropdown2.focus()
	}
	alert("Gelieve nog uw land te selecteren en opnieuw te verzenden. Bedankt voor uw medewerking.")
	return false
}