function  soundcard(){
 if(document.myfrom.mybox4.checked==true)
     {
       window.document.getElementById("soundcard_num").disabled=false;
       var a5 = window.document.getElementById("soundcard_a5").value;
       var a12 = window.document.getElementById("soundcard_a12").value;
       var total = 5 * a5 + 12 * a12;
       window.document.getElementById("soundcard_total").value = total;
    }
  else
      {
       window.document.getElementById("soundcard_num").disabled=true;
       window.document.getElementById("soundcard_total").value = 0;
 }
}
