Windowed elements such as SELECT and, in earlier browsers, IFRAME are always a higher z-index than other elements, such as DIV.
The standard way to cope with this is to render the select box invisible when the other part is operational, assuming your SELECT has an id of "lstMenu":
Code:
function toggleDisplay(ElementId)
{
var oElement = document.getElementById(ElementId);
if (oElement.style.visibility == "visible")
{
oElement.style.visibility = "hidden";
}
else
{
oElement.style.visibility = "visible";
}
}
toggleDisplay("lstMenu");
--
Joe (
Microsoft MVP - XML)