
function caricaComboMOL_CategorieReddituali(theCombo){
	theCombo.length=1+7;

		theCombo.options[1].value = '1';
		theCombo.options[1].text =  'Dipendente a tempo indet.';

		theCombo.options[2].value = '2';
		theCombo.options[2].text =  'Dipendente a tempo det.';

		theCombo.options[3].value = '4';
		theCombo.options[3].text =  'Autonomo con P.IVA';

		theCombo.options[4].value = '5';
		theCombo.options[4].text =  'Titolare ditta';

		theCombo.options[5].value = '6';
		theCombo.options[5].text =  'Professionista iscritto Albo';

		theCombo.options[6].value = '8';
		theCombo.options[6].text =  'Pensionato';

		theCombo.options[7].value = '7';
		theCombo.options[7].text =  'Rendita da partecipazioni';

}