I have a button that displays a modal window with bootstrap.
<button id="btnPrueba" type="button" data-toggle="modal" data-target="#VentanaProducto" style="height: auto; background-color: lightgray;">
But now I need to evaluate before displaying the modal window that from the following list has been selected Argentina
<select name="Comb" id="Contenido" class="form-control">
<option value="0">-</option>
<option value="12">Argentina</option>
<option value="44">Colombia</option>
</select>
Thanks