Вот html:
<h1>Калькулятор стоимости </h1>
<!--Форма типа -->
<form id="num1" onclick="checkForm1();">
<h2>Тип</h2>
<input type="radio" name="firstStep" /> для дома <br />
<input type="radio" name="firstStep" /> для офиса <br />
<input type="radio" name="firstStep" /> Каталог <br />
<input type="radio" name="firstStep" /> корпоративный <br />
</form>
<!--Форма с выбором дизайна-->
<form id="num2" class="hide1" onclick="checkForm2();" >
<h2>Дизайн</h2>
<input type="radio" name="secondStep" /> Минималистичный <br />
<input type="radio" name="secondStep" /> Стандартный <br />
<input type="radio" name="secondStep" /> Премиум <br />
</form>
<!--Форма с выбором функциональных особенностей -->
<form id="num3" name="num3" class="hide2" >
<h2>Функциональные особенности</h2>
<input type="checkbox" name="thirdStep" id="cb1" onchange="checkForm3(cb1)"/> check1 <br />
<input type="checkbox" name="thirdStep" /> check2 <br />
<input type="checkbox" name="thirdStep" /> check3 <br />
</form><hr />
<!--стоймость-->
<div id="cost">
</div>
<form> <input type="submit" class="myButton centered" value="Продолжить" onclick="javascript:window.location='[[~4]]'">
</form>