function checkCheckBox(){
	if (!document.getElementById('nutzungsbedingungen').checked) {
		alert('please accept our terms and conditions of use.');
		return false;
	}
	return true;
}