Hi Tony,
You just need to call the phoneui.preprocessDOM after your for instruction:
for (var i=0; i<noOfOptions; i++) {
var oOption = document.createElement(“OPTION”);
oOption.text=i + ” – ” + comboData[i] ;
oOption.value=i;
if(i ==1){
oOption.selected=true;
}else{
oOption.selected=false;
}
lCombo.add(oOption);
}//for
phoneui.preprocessDOM(“#m1-combo”);