Grazie per la risposta ma forse sbaglio qualcosa perche non mi funziona

<script type="text/javascript">
function Attiva(){
var sel = document.getElementById('Categoria');
if ((sel.options[sel.selectedIndex].value != '1') && (sel.options[sel.selectedIndex].value != '2')) {
document.getElementById('testo').style.display = "block";
return "block";
}
else {
document.getElementById('testo').style.display = "none";
return "none";
}
}
</script>
Seleziona categoria
<select name="Categoria" id="Categoria" onchange="Attiva();">
<option value="-1" selected="selected">- Seleziona -</option>
<option value="1">A</option>
<option value="2">B</option>
<option value="3">C</option>
</select>

<div class="testo" style="display:none">
Seleziona sottocategoria
<select name="Sub_Categoria" size="1" id="Sub_Categoria">
<option value="-1" selected="selected">- Seleziona -</option>
<option value="1">Prova 1</option>
<option value="2">Prova 2</option>
</select>
</div>