Пример...
<script type='text/javascript'>
function Go() {
var x=+document.getElementById('shirina').value
if (x>=250 ) {
alert("Больше или равно")
} else {
alert("Меньше")
}
}
</script>
<form>
<div>
<label for='shirina'>Ширина шкафа*:</label>
<input type="text" id='shirina' name="shirina"> <span>мм</span>
</div>
<input type='button' value='Go' onclick='Go()' />
</form>