function checkOptionen(){
	var laminat = document.FormName.id_laminat.value;
	if(laminat==2){
		//alert('nix da.');
		document.FormName.optionen[0].checked = false;
		document.FormName.optionen[0].disabled = true;
		document.getElementById('commentOption1').innerHTML = '(F&uuml;r dieses Laminat nicht verf&uuml;gbar.)';
	}
	else{
		document.FormName.optionen[0].disabled = false;
		document.getElementById('commentOption1').innerHTML = '';
	}
}
