Eso lo puedes hacer fácilmente con javascript por ejemplo
    
Código HTML:
Ver original<select id="Seleccionar" onchange="FijarPrecio(this.id);"> <input type="text" name="Precio" id="Precio" /> <script type="text/javascript">     function FijarPrecio(id){
       var PrecioSel = document.getElementById(id);
       var PrecioActual = document.getElementById('Precio');
       PrecioActual.value = PrecioSel.value;
    }