var valor=document.getElementById("A").options[document.getElementById("A").selectedIndex].value;
if(valor==0) {
combo=document.getElementById("B");
combo.length=0;
var nuevaOpcion=document.createElement("option");
nuevaOpcion.value=0;
nuevaOpcion.innerHTML="Selecciona Letra...";
combo.appendChild(nuevaOpcion);
combo.disabled=true;
Alguien sabe?