
function refreshStates(countryElement, stateElement, currentCountry, arrStates, selectMsg) {
	var countries = document.getElementById(countryElement);
	selectedCountry = countries.value;
	
	if (selectMsg == null || selectMsg=='') {
		selectMsg = 'Seleccioná uno';
	}
		
	if (selectedCountry == currentCountry) {
		document.getElementById(stateElement).length = 0;
		document.getElementById(stateElement).options[0] = new Option(selectMsg, '');
		for (i=0;i<arrStates.length;i++) {
			document.getElementById(stateElement).options[1+i]= arrStates[i];
		}
	} else {
		document.getElementById(stateElement).length = 0;
		document.getElementById(stateElement).options[0] = new Option('No Disponible', '');
	}
	
}
