if(MooTools){
	window.addEvent('domready',function(){

		getState=function(obj){
			var url = 'index.php?option=com_jdm&view=user&task=getCountryState&code='+obj.value+'&format=raw';
			var myAjax= new Ajax( url,
					{ 
						method: 'get', 
						update: $('state_input'), 
						onComplete: function(){	}
					}
				);
			
			myAjax.request();
			return myAjax;
		}
	});
} // endif MooTools
