function calcula() {
var valor = document.comprar.quantidade.value;
var qntd = new Number(document.comprar.preco.value);
var novovalor = valor*qntd

if (valor=="vazio") {
document.getElementById('total_c').innerHTML = "Selecione uma quantidade acima"
} else {
document.getElementById('total_c').innerHTML = novovalor.toFixed(2).replace(".",",")
document.getElementById('valortotal').value = novovalor.toFixed(2).replace(".",",")
}


}

