function caricaComboMOL_TipiTasso(theCombo){
	theCombo.length=1+7;

		theCombo.options[1].value = '1';
		theCombo.options[1].text =  'Fisso';

		theCombo.options[2].value = '2';
		theCombo.options[2].text =  'Variabile';
		
		theCombo.options[3].value = '7';
		theCombo.options[3].text =  'Variabile con cap';

		theCombo.options[4].value = '6';
		theCombo.options[4].text =  'Variabile a rata costante';

		theCombo.options[5].value = '5';
		theCombo.options[5].text =  'Variabile a rimborso libero';
		
		theCombo.options[6].value = '12';
		theCombo.options[6].text =  'Variabile offset';

		theCombo.options[7].value = '3';
		theCombo.options[7].text =  'Misto';

}