var addOption = function(parent,node){ var option = document.createElement('option'); option.innerHTML = node; parent.appendChild(option); }