You are not able to use both single quotes and double quotes in a javascript statement, or you will receive the error.
Instead of...
document.getElementById("RBL_Firm").options[selectedIndex].value == '1'
...try this...
document.getElementById("RBL_Firm").options[document.getElementById("RBL_Firm").selectedIndex].value == "1"
|