
function changePrice(price, price_notax) {

//document.getElementById("price").innerHTML = price+" Kč";

document.getElementById("total_price").innerHTML = price+" Kč";
document.getElementById("total_price_notax").innerHTML = price_notax+" Kč";

}
