<select hx-target="#oppilaitos" hx-trigger="change, load" hx-swap="outerHTML" hx-get="https://users.jyu.fi/~tjlahton/cgi-bin/ties4080/ohjaus5/flask2.cgi/oppilaitokset_htmx" id="{{name}}" name="{{name}}">
{% for o in ryhmat %}
{% if loop.first %}
    <option selected="selected" value="{{o["ryhmaid"]}}">{{ o["ryhmanimi"] }}</option>
{% else %} 
    <option value="{{o["ryhmaid"]}}">{{ o["ryhmanimi"] }}</option>
{% endif %}
{% endfor %}
</select>
