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.
function removeSelectOption(objSelect, strValue)
{
for (i=0;i<objSelect.options.length;i++)
{
if (objSelect.options[i].value == strValue)
{
objSelect.options[i] = null;
}
}
} //removeSelectOption