Hola amigos, necesito de su ayuda, estoy haciendo un <selec><option de la siguiente forma:
   Código PHP:
    <div class="center_select_top">
      <div class="content_top_txt">
        <div class="center_select_top_tit" style="height:18px;"><span>NOMBRE</span></div>
       
            <div class="center_drop" style="display:block">
            <div class="center_d_l"></div>
              <div class="center_d_c">
                    <select name="item" class="drop_select">
                    <option value="1">x</option>
                    <option value="2">x</option>
                    <option value="3">x</option>
                    <option value="4">x</option>
                    <option value="5">x</option>
                    <option value="6">Ax</option>
                    <option value="7">x</option>
                    <option value="8">x</option>
                    </select>                
              </div>                  
        <div class="center_d_r"></div> 
            </div>         
      </div>     
    </div> 
    
  el problema esta en el <div class="center_select_top"> ya que usa un background de la siguiente forma:  
 Código HTML:
 .center_select_top
	{
		width:708px;
		float:left;
		height:69px;
		background:url(/imgs/top.png) no-repeat;
	}
 en IE8 no funciona el select option, en firefox si funciona normal, deja de funcionar en ie8 cuando le agrego el background:url(/imgs/top.png) no-repeat; a que se debe que ya no se puede seleccionar manualmente? 
espero su ayuda gracias