obj = document.getElementById('slt_result');

numb=obj.length+1;
newOpt=document.createElement("OPTION");
newOpt.text=str;
newOpt.name=str;
newOpt.value=str;

obj.add(newOpt);
obj.length = numb;
Posted by 알 수 없는 사용자
,