There are two list boxes, one with templates to choose from and another with templates to invoice. With a button it is about adding to the second list box the selected option of the first one, but it does not do anything.
<br><br>
<div id="seleccionar">
<select name="seleccionarPlantilla" id="seleccionarPlantilla">
<option value="option1">Tom</option>
<option value="option2">Logros</option>
<option value="option3">Líderes</option>
<option value="option4">Marca</option>
<option value="option5">Comida</option>
<option value="option6">Abogacía</option>
<option value="option7">Nuestro</option>
<option value="option8">Vigas</option>
<option value="option9">Axis</option>
</select>
</div>
<div id="botonSeleccionar">
<button id="Agregar" name="Agregar" onclick="">Agregar</button>
</div>
<br><br>
<select name="plantillasAFacturar" id="plantillasAFacturar">
</select>
<script type="text/javascript">
function agregarPlantilla(){
$(plantillasAFacturar).prepend($( "#seleccionarPlantilla option:selected" ).attr("value"));
}
</script>