Посмотрите пожалуйста, где я мог допустить ошибку?
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Пример</title>
</head>
<body>
<script type="text/javascript">
fruit.onchange = function(argument) {
if (limon.selected) {
vec.innerHTML = "50";
cena.innerHTML = "40";
};
if (orange.selected) {
vec.innerHTML = "30";
cena.innerHTML = "20";
};
}
</script>
<select id="fruit">
<option value="1" id="orange">апельсин</option>
<option value="2" id="limon">лимон</option>
</select>
<br/>
<table border="1" class="m">
<tr>
<td width="50px">Вес</td>
<td width="50px"> Цена</td>
</tr>
<tr>
<td id="vec" height="20px"></td>
<td id="cena"></td>
</tr>
</table>
</body>