<select id="choose" onchange="ChangeColor()">
<option value="" disabled="disabled">--------</option>
<option value="NewSite">Создать сайт</option>
<option value="Rent">Взять в аренду</option>
</select>
<input id="1" />
<input id="2" />
<input id="3" />
<input id="4" />
<input id="5" />
<script>
function ChangeColor(){
var option = document.getElementById('choose').value,
one = document.getElementById('1'),
two = document.getElementById('2'),
three = document.getElementById('3'),
four = document.getElementById('4'),
five = document.getElementById('5');
one.style.backgroundColor = two.style.backgroundColor = three.style.backgroundColor = four.style.backgroundColor = five.style.backgroundColor = 'white';
if (option == 'NewSite'){
one.style.backgroundColor = three.style.backgroundColor = five.style.backgroundColor = 'red';
}
else if (option == 'Rent'){
two.style.backgroundColor = four.style.backgroundColor = five.style.backgroundColor = 'red';
}
}
</script>
Сорри за такой код, там можно все легче сделать, просто нет времени писать, но смысл таков.