Есть один совет общий. НЕ знаю как вам, но мне удобней пользоваться
document.getElementById('').value.
<form name="calc">
<strong>Параметр стен:</strong><p>
<select name="walls" id="selectSp">
<option value="1">Без стен</option>
<option value="2">Тентовые стены</option>
<option value="3">Стены из профлиста</option>
</select>
<p><strong>Площадь ангара:</strong><p>
<input name="square" id="squareTx" type="text" value="0" size="6">
<br><input type="button" value=" Рассчитать " onclick="result(walls, square)">
<p><strong>Ориентировочная стоимость:</strong><p>
<input name="res" id="otvet" type="text" value="0">
</form>
<script>
var w=document.getElementById('selectSp').value,
s=document.getElementById('squareTx').value,
w=parseFloat(w),
s=parseFloat(s),
rez=document.getElementById('otvet).value;
if (s>=500)
{
if (w==1)
{ rez = s * 40; }
else if (w==2)
{ rez = s * 65; }
else
{ rez = s * 85; }
}
else
{
if (w==1)
{ rez = s * 55; }
else if (w==2)
{ rez = s * 75; }
else
{ rez = s * 100; }
}
}
</script>