combobox php code example
Example 1: html form select
<!-- O segundo valor estará selecionado inicialmente -->
<select name="select">
<option value="valor1">Valor 1</option>
<option value="valor2" selected>Valor 2</option>
<option value="valor3">Valor 3</option>
</select>
Example 2: saber value ao escolher combobox php
$(document).ready(function(){
$(document).on('click', '#vervalor', function(){
let valor_ingresso = $('#cb_ingresso option:selected').val();
let quantidade_ingresso = $('#cb_catinsumo option:selected').val();
let total = (valor_ingresso*quantidade_ingresso);
$('.total').css('display', 'block');
$('#preco_total').html('R$ '+total);
});
});