function _initGLRegion()
{
	var label		= document.createElement('label');
	label.htmlFor	= 'statecode';
	label.innerHTML	= regionText + ':';

	var element 		= document.createElement('select');
	element.name 		= 'statecode';
	element.id 			= 'statecode';
	element.onchange 	= _handleGLRegionSelection;

	var br1 	= document.createElement('br');
	br1.clear 	= 'all';
	ajaxForm.appendChild(br1);

	// If the user *hasnt* selected a country
	if (-1 == _getGLCountry().value || null == _getGLCountry().value || false == _getGLCountry().value){

		// Add the elements
		var tmpElement = ajaxFormDiv.appendChild(element);
		ajaxForm.appendChild(label);
		ajaxForm.appendChild(tmpElement);
		ajaxDiv.appendChild(ajaxForm);

		// No results found - set the region DD to NA
		makeDDNodeNA(_getGLRegion());

		// Now disable the region DD incase it's enabled
		_getGLRegion().disabled = true;

	}

}
