// JScript source code

	//window.onload = RegisterClass();
	
    function OnClientDropDownClosing_workhistory(item)
    {	
    
   // alert(item.GetValue());
   // alert(item.GetText());
   
   
 
	var sText = item.GetValue();	
	var arrVal;
	var salonPhone = document.getElementById('tbWorkHistoryPhone');
	var comboDD =  document.getElementById('cbProductCode1_DropDown');
	//comboDD.style.display = 'none';
	var comboBox = document.getElementById('cbProductCode1_text');
	//	comboBox.focus();
	var tbState =  document.getElementById('tbWorkHistoryState');
	var tbSuburb = document.getElementById('tbWorkHistorySuburb');
	var tbPostcode =  document.getElementById('tbWorkHistorySalonPostcode');
    if (sText != "")
    {
		arrVal = sText.split(";"); 
		tbSuburb.value = arrVal[0];
		tbState.value = arrVal[1];
		tbPostcode.value = arrVal[2];
		comboBox.value = '11111';
		return true;
    }
       
      return false;
    }
    
    
    function OnClientDropDownClosing_salon(item)
    {
//    alert('OnClientDropDownClosing_salon')
 	var sText = item.GetValue();	
	var arrVal;
//	var salonPhone = document.getElementById('tbWorkHistoryPhone');
	var comboDD =  document.getElementById('radComboBox_Salon_DropDown');
	//comboDD.style.display = 'none';
	var comboBox = document.getElementById('radComboBox_Salon_input');
	//	comboBox.focus();
	var tbState =  document.getElementById('tbSalonState');
	var tbSuburb = document.getElementById('tbSalonSuburb');
	var tbPostcode =  document.getElementById('tbSalonPostcode');
    if (sText != "")
    {
		arrVal = sText.split(";"); 
		tbSuburb.value = arrVal[0];
		tbState.value = arrVal[1];
		tbPostcode.value = arrVal[2];
		//comboBox.value = '999';
		return true;
    }
       
      return false;
    }
    
    
  function OnClientDropDownClosing_postjob(item)
    {

 	var sText = item.GetValue();	
	var arrVal;
//	var salonPhone = document.getElementById('tbWorkHistoryPhone');
	var comboDD =  document.getElementById('radComboBox_PostJob_DropDown');
	//comboDD.style.display = 'none';
	var comboBox = document.getElementById('radComboBox_PostJob_input');
	//	comboBox.focus();vtbLocation
	var tbState =  document.getElementById('tbState');
	var tbSuburb = document.getElementById('tbLocation');
	var tbPostcode =  document.getElementById('tbPostcode');
    if (sText != "")
    {
		arrVal = sText.split(";"); 
		tbSuburb.value = arrVal[0];
		tbState.value = arrVal[1];
		tbPostcode.value = arrVal[2];
		//comboBox.value = '999';
		return true;
    }
       
      return false;
    }
    
    function RegisterClass()
    {
			var InputBox = document.getElementById('cbProductCode1');
	
			if (typeof(InputBox) == "object")
			{
			
		//		alert('yes');
			    InputBox.className = "ComboBoxInput_Default";
			}
	
	}

