 <!--
    function preisUpdateArt()
        {
      var anz=parseInt(document.DAFORM.b_anz0.value);
      if(!(anz > 0))
      {
        anz=0;
        document.DAFORM.b_anz0.value="0";
      }
      option = 0;
      option += anz * Get_b_opt0_0_Price();
      gesamt = anz * 59.9 + option;
      document.DAFORM.b_ges0.value = gesamt.toFixed(2) + " €";



      gesamtKosten();
      steuer();
    }

      function Get_b_opt0_0_Price()
      {
      var opt = 0;
      if (document.DAFORM.b_opt0_0.selectedIndex == 0) opt = 0;
      if (document.DAFORM.b_opt0_0.selectedIndex == 1) opt = 2.7;
      if (document.DAFORM.b_opt0_0.selectedIndex == 2) opt = 3;
      return opt;
    }



        function gesamtKosten()
        {
            total = 0.0;

            option = 0;
            option += document.DAFORM.b_anz0.value * Get_b_opt0_0_Price();
            total += document.DAFORM.b_anz0.value * 59.9 + option;


          document.DAFORM.b_gesamt.value = total.toFixed(2) + " €";
        }

        function steuer()
        {
            total = 0.0;



        }
//-->