I have a problem with the implementation of this simulation, it is the following, the user chooses the package by clicking on one of these boxes (monthly, quarterly, semiannual or annual), then chooses to select the number of points and wants to multiply them data showing in the last box where you have 306 via JavaScript or using the JQuery library.
<!--TIPODEPLANO--><ahref="" class="ico_planos">
<div class="col-md-3">
<header>
<p>Mensal</p>
</header>
<section class="valor">
<p><span>R$</span>170<span>,00</span></p>
</section>
</div>
</a>
<!-- QUANTIDADE QUE ESCOLHER -->
<select name="qntdPlayers" id="selectQntdPlayers">
<option value="1">01 Ponto</option>
<option value="3">03 Pontos</option>
<option value="6">06 Pontos</option>
<option value="9">09 Pontos</option>
<option value="10">10 ou mais Pontos</option>
</select>
<!-- DENTRO DA DIV simulacaoValorTotal eu gostaria de mostrar o resultado da multiplicação de valor x value escolhido -->
<section class="praquem">
<p><b style="color:#064e71">Valor do pacote</b></p>
<p class="simulacaoValorTotal">R$ 306,00/mês</p> <!-- <- MOSTRAR AQUI O RESULTADO DE TIPO DE PACOTE X QUANTIDADE ESCOLHIDA (170X1 = 170) -->
</section>