Nope, I do this all the time.
Have you debugged??
Have you checked that
busLocationTypeValue really *IS* only and exactly
n in those other browsers?
&&&&&&&&&&&&&&&&&&&&&
Incidentally, you can write that more compactly:
Code:
var isN = (busLocationTypeValue == "n");
document.getElementById("divNonCentralLocation").style.display = isN ? 'block' : 'none';
document.getElementById("divCentralLocation").style.display = isN ? 'none' : 'block'
document.getElementById( (isN ? "c" : "nc" ) + "BusLocation").value = '';