//商品計算
function keisan(){

var tax = 5; // 消費税率

// 商品1（すのこタンイラスト入り2100）
var price1 = document.form1.goods1.options[document.form1.goods1.selectedIndex].value;

// 商品2（すのこタンイラスト無し1900）
var price2 = document.form1.goods2.options[document.form1.goods2.selectedIndex].value;

// 商品3（すのこタンイラスト絶対領域2300）
var price4 = document.form1.goods4.options[document.form1.goods4.selectedIndex].value;

// 送料
var price3 = document.form1.goods3.options[document.form1.goods3.selectedIndex].value;
var soryo = parseInt(price3);

// 合計を計算
var total1 = parseInt(price1) + parseInt(price2) + parseInt(price4);

document.form1.fieldtotal1.value = total1; // 合計を表示

var tax2 = Math.round(total1 / 21);
document.form1.fieldtax.value = tax2; // 消費税を表示

document.form1.fieldtotal2.value = total1 + soryo; // 税込合計を表示

var goods1 = Math.round(price1 / 2100);
document.form1.piece2100.value = goods1; // すのこタン2100

var goods2 = Math.round(price2 / 1900);
document.form1.piece1900.value = goods2; // すのこタン1900

var goods4 = Math.round(price4 / 2300);
document.form1.piece2300.value = goods4; // すのこタン2300

}
