function appendOptionLast(elSel, value, text) { var elOptNew = document.createElement('option'); elOptNew.text = text; elOptNew.value = value; try { elSel.add(elOptNew, null); // standards compliant; doesn't work in IE } catch(ex) { elSel.add(elOptNew); // IE only } } (function () { var sel_loc = document.getElementById('q_location'); var sel_cat = document.getElementById('q_category'); appendOptionLast(sel_loc, "Bay Area (Peninsula)", "Bay Area (Peninsula)"); appendOptionLast(sel_loc, "Bay Area (South Bay)", "Bay Area (South Bay)"); appendOptionLast(sel_cat, "Clinical - Pre Clinical", "Clinical - Pre Clinical"); appendOptionLast(sel_cat, "Clinical Director", "Clinical Director"); appendOptionLast(sel_cat, "Finance", "Finance"); appendOptionLast(sel_cat, "Human Resources", "Human Resources"); appendOptionLast(sel_cat, "Manufacturing", "Manufacturing"); appendOptionLast(sel_cat, "Operations", "Operations"); appendOptionLast(sel_cat, "Quality", "Quality"); appendOptionLast(sel_cat, "R&D", "R&D"); appendOptionLast(sel_cat, "Regulatory", "Regulatory"); appendOptionLast(sel_cat, "Sales", "Sales"); })();