well as the title says I need to change several select
when I select one that I have as the head of the others, I'll put my example in code:
//Este es el select que tiene que cambia a los otros al yo seleccionar alguna de sus opciones
<select name="select_encabezado">
<option value="1">uno</option>
<option value="2">dos</option>
<option value="3">tres</option>
</select>
<br><br>
//Select que deben ser afectados
<select name="otros_select[]">
<option value="1">uno</option>
<option value="2">dos</option>
<option value="3">tres</option>
</select>
<select name="otros_select[]">
<option value="1">uno</option>
<option value="2">dos</option>
<option value="3">tres</option>
</select>
<select name="otros_select[]">
<option value="1">uno</option>
<option value="2">dos</option>
<option value="3">tres</option>
</select>
...
...
So when you change the select
header, for example to the option "two", the others must change to the same option.