Make as a listbox (select option)

I have the following html which collects the records that I extract from a mysql query, so far so good because it lists them correctly for me.
What I would like is to make a listbox (select option) so that it lists them for me and to be able to choose one of them, later depending on which one I choose to do a few steps…
could you help me?

<section class="section">
    <div class="columns">
        <div class="column">
            <h3 class="is-size-3">REPORTES</h3>
            <table class="table">
                <thead>
                    <tr>
                        <th>report</th>
                    </tr>
                </thead>
                <tbody>
                    {% for juego in juegos %}
                    <tr>
                        <td>{{juego[0]}}</td>
                    </tr>
                    {% endfor %}
                </tbody>
            </table>
        </div>
    </div>
</section>

thank you.