function _initGLIndustry()
{
	var label		= document.createElement('label');
	label.htmlFor	= 'industryKey';
	label.innerHTML	= industryText + ':';

	var element = document.createElement('select');
	element.name = 'industryKey';
	element.id = 'industryKey';
	element.onchange = _handleGLIndustrySelection;

	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(_getGLIndustry());

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

	}


}
