@Octavio
Thanks for the quick response.
The link you gave me takes me to a topic regarding adding gaming capabilities so I think that’s the wrong one.
Anyway, I don’t think I could have explained my problem clearly.
I am calling the javescript function using the OnChange event of the first combo and the second combo is populating correctly.
The drop down portion of the combo lists the items and the first one is selected as expected but the text value of the first item isn’t showing in the combo. Like this…

If I select the other item in the list it’s works fine from then on.
The code is very simple at the moment while I find my way around but is as follows…
var i = 10;
function doCountryChange() {
//Clear Place drop down
$(‘#m1-pCheckIn-hidden-select-cPlace’).empty();
//Add new item
$(‘#m1-pCheckIn-hidden-select-cPlace’).append(‘<option value=”Unknown” label=”Unknown”>Unknown</option>’);
$(‘#m1-pCheckIn-hidden-select-cPlace’).append(‘<option value=”NewPlace’ + i + ‘” label=”New Place ‘ + i + ‘”>New Place ‘ + i + ‘</option>’);
$(‘select[name=”cPlace”] option:first’).attr(‘selected’,’selected’);
phoneui.preprocessDOM(‘pCheckIn’);
//Increment counter
i++;
return;
}
cPlace is the name of the second combo and pCheckIn the name of the screen.
Sorry if I wasn’t clear before. Hope this is more so.
Paul