I have defined a drop down list as follows. I am using it on Android with phonegap. I want to customize the drop down list from within the html. I want to appear it as a dropdown without it coming to the front. Is it possible?\[code\]<html><head><title>Title</title><script type="text/javascript" src="http://stackoverflow.com/questions/11242076/phonegap-1.4.1.js"></script><script type="text/javascript" src="http://stackoverflow.com/questions/11242076/JS/Util.js"></script><script type="text/javascript" src="http://stackoverflow.com/questions/11242076/JS/Language.js"></script><script type="text/javascript"> function dropdown(){ var drp = document.getElementById("numberlist");var optn = document.createElement("OPTION");optn.text="3";optn.value="http://stackoverflow.com/questions/11242076/3";drp.add(optn);} </script></head><body onload="dropdown();"><div id="main3"></div><form><select id = "numberlist"><option>12</option><option>24</option><option>36</option></select></form></body></html>\[/code\]