window.attachEvent('onscroll', RefreshSelects); 

function RefreshSelects() 
{ 
  //Illogical and stupid hack to make IE not mess upp all <select>s on the page when scrolling. 
  if (window.frames["main"] && window.document.getElementsByTagName) {
    var selects = window.frames["main"].document.getElementsByTagName("select"); 
    if (selects.length > 0) {
      for (var i = 0; i < selects.length; i++)
      {
        selects[i].style.fontFamily = selects[i].style.fontFamily;
      }
    }
  }
} 


