<select id="sel1">
<option>Пункт 1</option>
<option>Пункт 2</option>
<option>Пункт 3</option>
<option>Пункт 4</option>
</select>
<select id="sel2">
<option>Пункт 1</option>
<option>Пункт 2</option>
<option>Пункт 3</option>
<option>Пункт 4</option>
</select>
<script>
window.onload = function () {
var sel1 = document.getElementById('sel1');
var sel2 = document.getElementById('sel2');
sel1.onchange = function () {
sel2.selectedIndex = sel1.selectedIndex;
}
}
</script>