Muchas gracias PHPeros
Mi código quedaría así:
Código HTML:
function cotizarfactura()
{
var factura=document.getElementById("factura").value;
function numero(factura){
return +num.toString().replace(/,/g,"");
}
if(factura==""){
document.getElementById("Comenta").innerHTML="Por favor, introduce la cantidad correcta de facturas.";
document.getElementById("paqueteL").innerHTML="No disponible";
document.getElementById("operacionesL").innerHTML="No disponible";
document.getElementById("precioL").innerHTML="No disponible";
}
else if(factura<=2500){
document.getElementById("Comenta").innerHTML="Te recomendamos el siguiente paquete:";
document.getElementById("paqueteL").innerHTML="PyME";
document.getElementById("operacionesL").innerHTML="2,500";
document.getElementById("precioL").innerHTML="$5,558.72";
}
}