arkada38,
<script>
function func(id) {
for (i=0; i < document.getElementById("divs").getElementsByTagName("div").length; i++) {
document.getElementById("divs").getElementsByTagName("div")[i].style.display = "none";
if (document.getElementById("divs").getElementsByTagName("div")[i].id == id) { document.getElementById("divs").getElementsByTagName("div")[i].style.display = "block"; }
}
}
</script>
<form onsubmit="return false" oninput="func('u' + a.value + b.value + c.value);">
<input name="a" type="range" min=1 max=5>
<input name="b" type="range" min=1 max=5>
<input name="c" type="range" min=1 max=4>
<output name="d">
<div id="divs">
<div id="u554" style="display: none;">
Содержимое первого
</div>
<div id="u553" style="display: none;">
Содержимое второго
</div>
</div>
</form>