Código HTML:
function confirma_apuesta() { sel_ganador = document.getElementById('ganador'); sel_place = document.getElementById('place'); fijo = document.getElementById('fijo').value; boletos1 = sel_ganador.options[sel_ganador.selectedIndex].value; boletos2 = sel_place.options[sel_place.selectedIndex].value; importe = (boletos1 * fijo) + (boletos2 * fijo); if(importe == 0) { alert('Por favor seleccione la cantidad de boletos para apostar'); return false } else { mensaje = '¿Desea apostar ' + boletos1 + ' ganador y ' + boletos2 + ' place' + '\ncon un total de: Bs. ' + importe + '?'; return confirm(mensaje); } }