Hola
Prueba con esto
Código Javascript
:
Ver originalfunction crono(){
var hoy = new Date();
if (hoy.getDate() >= 15) { mes = hoy.getMonth()+1; } else { mes = hoy.getMonth();}
var fechaFinal = new Date(hoy.getFullYear(), mes, 15)
diferencia = fechaFinal.getTime() - hoy.getTime()
segundostotales = parseInt(diferencia /1000);
diasFaltan = parseInt((segundostotales/60/60/24)+1);
document.getElementById('contador_regresivo').innerHTML = 'Falta ' + diasFaltan;
}
window.onload=function(){crono();};
Suerte