function selectFix(odiv)
{
if(document.all)
{
var oiframe = document.createElement("iframe");
oiframe.frameBorder=0;
oiframe.style.position="absolute";
oiframe.style.zIndex=-1;
if(odiv.childNodes.length>0)
{
odiv.appendChild(oiframe);
}
else
{
odiv.insertBefore(oiframe,odiv.firstChild);
}
odiv.onresize = function(){
oiframe.style.width = this.clientWidth;
oiframe.style.height = this.clientHeight;
}
}
}