<select id="sel1">
<option>Пункт 1</option>
<option>Пункт 2</option>
<option>Пункт 3</option>
<option>Пункт 4</option>
</select>
<select>
<option>Пункт 1</option>
<option>Пункт 2</option>
<option>Пункт 3</option>
<option>Пункт 4</option>
</select>
<script>
window.onload = function () {
var sel1 = document.getElementById('sel1');
sel1.onchange = function () {
this.nextElementSibling.selectedIndex = this.selectedIndex; //не для IE<9
}
}
</script>