function DoKoszyka(co){
   if (co) document.getElementById("dokoszyka").style.display = 'block';
	else document.getElementById("dokoszyka").style.display = 'none';
}

function ChangePriceKokpit() {
		var idek = document.getElementById("selectlicense").options[document.getElementById("selectlicense").selectedIndex].text + document.getElementById('selectabonament').value;
		var cena = document.getElementById(idek).value;
		document.getElementById('divcena').innerHTML =  cena + ' zł';
		document.getElementById('price').value = cena;
}

function ChangePriceRotator() {
		var idek = 'ABO' + document.getElementById('selectabonament').value;
		var cena = document.getElementById(idek).value;
		document.getElementById('divcena').innerHTML =  cena + ' zł';
		document.getElementById('price').value = cena;
}

function PokazForm() {
   form = document.getElementById("sprawdzcene");
	if (form.style.display == 'none') form.style.display = 'block';
	else form.style.display = 'none';
}

function SprawdzCene() {
	sel = document.getElementById('selectprice');
	//alert('oto: '+sel.options[sel.selectedIndex].value);
	//if (sel.options[sel.selectedIndex].value == 0) alert ('jest 0');
	//else alert('Nie ma 0!');
	document.getElementById('selectprice').options[document.getElementById('selectprice').selectedIndex].value == "0" ? ret = false : ret = true;
	return ret;
}
