Псевдокод:
$('#aboutPage').live('pagecreate',function(event){
alert('This page was just loaded/enhanced by jQuery Mobile!');
// do ajax call to get list
$.ajax({
url: 'yourRequestPage.php?parm='+yourSearchParm[option],
type: 'GET',
error : function (){ document.title='error'; },
success: function (data) {
$('#selectOptionTag').html(data);
// Something like this:
$("div#selectOptionTag ul").listview();
// Or this
$('ul').listview('refresh');
}
});
});