function goTo(l) {
	val = document.getElementById('baustoff').value;
	val = parseInt(val);
	
	if(val > 0) {
		document.location.href = 'index.php?id='+val+'&L='+l;
	}
	
	return false;
}