var obj = {'1':'Apple','2':'Banana'}, html = ''; for(key in obj) html += '<option value="' + key + '">' + obj[key] + '</option>'; alert(html)