<!DOCTYPE html> <html> <script type="text/javascript" src="../jquery-1.4.4.min.js" /> <script type="text/javascript"> function click(){ var select = document.getElementById("select"); var json = [["Deutsch", "de-DE"], ["US Englisch", "en-US"]]; json = JSON.parse(json); select.options.length = 0; for(var i=0; i<json.length; i++) { $("#select").append(new Option(json[i][0], json[i][1], false, false)); } } </script> <body> <select id="select"></select> <input type="button" onclick="click()" /> </body> </html> I'm trying to add options to the select element, but to no avail.