JS sets the control enabled to be interactive
document.getElementById("Control ID").disabled ="";
JS sets the control enabled to be non-interactive
document.getElementById("Control ID").disabled = "none";
js assigns value to dropdownlist
document.getElementById("Control ID").options.add(new Option("Text","Text"));