//Калькулятор
function calculate() {
var el, i = 0;
var total = 0;
while(el = document.getElementsByName("choise")[i++]) {
if(el.checked) { total= total + Number(el.value);}
}
//alert(total);
var div = document.getElementById('price');
div.innerHTML = total + "Р." ;
}