|    
			
				23/06/2010, 08:51
			
			
			  | 
  |   |  |  |  Fecha de Ingreso: mayo-2010 
						Mensajes: 112
					 Antigüedad: 15 años, 5 meses Puntos: 0 |  | 
  |  Respuesta: actualizacion de option select  
  Algo me dejo...
 function removeOpt( campo )	{
 var campoAf = document.getElementById( campo );
 while( campoAf.options.length ) campoAf.remove(0);
 }
 
 
 function prueba()
 {
 //	 document.write('hola');
 //	 emptySelect('autor_select');
 // document.busqueda.getElementById('autor_select').o  ptions.length = 0;
 removeOpt('autor_select');
 
 }
     |