News

var select = document.getElementById("selectbox"); //1 var option = document.createElement('option'); option.text = "XYZ"; select.add(option); the "selectbox" is the ...