function getmoney(V,V2,P,P2,SV,UT,PL,CV,DP,dostavka)
{
total1 = (V*P);
total2 = (V2*P2);
total3 = (SV*1);
total4 = (UT*1);
total5 = (PL*1);
total6 = (CV*1);
total7 = (DP*1);
total8 = (dostavka*1);
total =( total1 + total2 + total3 + total4 + total5 + total6 + total7 + total8) ;

document.getElementById("resultat").innerHTML=total+ ".00   грн";
}
