Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<script>
function addOption(theSel){
oc = theSel.options.length;
if(theSel.selectedIndex==oc-1){
newOpt = window.prompt("Enter Address","");
if(newOpt+"">""){
theSel.options[oc] = new Option(theSel.options[oc-1].text);
theSel.options[oc-1] = new Option(newOpt, newOpt, true, true);
}
}
}
</script>
</head>
<body>
<form>
<select name="strCcBillAddress" onChange="addOption(this)">
<option>Please select
<option>See Customer Info
<option>Other
</select>
<input type=submit>
</form>
</body>
</html>