function revenuChange() {
	rev=getValue('revenu');
 	if (rev!='')
	{
		vrev=strtoint(rev);
		setValue('revenu',inttostr(vrev));
		var j=0;
		var taux=0;
		while((taux_tmp=taux_endettement[j]) != null)
		{
			if(vrev < taux_tmp[0])	
			{
				taux=taux_tmp[1];
				break;
			}
			j++;
		}
	  	setValue('remb',inttostr(vrev/12*(taux/100)));
 	}
}

