JSFiddle - React, Tailwind, and code Playground
HTML
<!-- 111111111 -->
<form name="1">
<select onchange="calc()" id="select1" name="select1" class="calc2select" size="1">
<option title="800" select value="Avtovo">Автово
<option title="200" select value="Admiraltejskaya">Адмиралтейская
<option title="500" select value="Akademicheskaya">Академическая
<option title="200" select value="Baltijskaya">Балтийская
<option title="700" select value="Buxarestskaya">Бухарестская
<option title="1200" select value="Vasileostrovskaya">Василеостровская
<option title="200" select value="Vladimirskaya">Владимирская
</select>
<input type="hidden" title="check[]" value="1">
</form>
<!-- 22222222222222222 -->
<input value="0" onchange="calc()" type="radio" name="select2" id="select2">
<label class="kad" for="kad_1"><b>Внутри КАД/</b></label>
<input value="33" onchange="calc()" type="radio" name="select2" id="select3">
<label class="zakad" for="zakad_2"><b>За пределами КАД</b></label>
<!-- 3333333333333333333333 -->
<form >
<select onchange="calc()" id="select2" name="select2" class="calc3selecto" size="1">
<option title="5" select value="ttt">Сегодня
<option title="300" select value="tommorow">Адмиралтейская
<option title="500" select value="3">Завтра
<option title="2" select value="4">Послезавтра
<option title="3" select value="5">11 октября
<option title="4" select value="6">12 октября
<option title="4" select value="7">13 октября
<option title="5" select value="8">14 октября
</select>
<!-- <input type="hidden" title="check[]" value="1"> -->
</form>
<!-- 444444444444444444444444444 -->
<input type="radio" name="ves" id="ves1" checked>
<label class="tengk" for="ves1">До 10 кг</label>
<input type="radio" name="ves" id="ves2">
<label class="twkg" for="ves2">От 10 до 20 кг</label>
<!-- 55555555555555555555555555 -->
<input class="input991" type="checkbox" checked="checked"/>
<input...
JavaScript
function calc() {
var select1 = document.getElementById("select1");
var select2 = document.getElementById("select2");
var select3 = document.getElementById("select3");
var result = document.getElementById("result");
var price = 100;
price = parseInt(select1.options[select1.selectedIndex].title) +
parseInt(select2.options[select2.selectedIndex].title) +
parseInt(select3.options[select3.selectedIndex].title) +
parseInt(+select4.options[select4.selectedIndex].title);
result.innerHTML = price;
}