function ForAgentsRegistration_startup(websiteTypeDropDownList_id, affiliationDropDownList_id)
{
	var websiteTypeDropDownList = document.getElementById(websiteTypeDropDownList_id);
	var affiliationDropDownList = document.getElementById(affiliationDropDownList_id);
	websiteTypeDropDownList.ForAgentsRegistration_onchange = websiteTypeDropDownList.onchange;
	websiteTypeDropDownList.affiliationDropDownList = affiliationDropDownList;
	websiteTypeDropDownList.onchange = function(){
		this.affiliationDropDownList.disabled = this.options[this.selectedIndex].value != "Agent";
		if(this.ForAgentsRegistration_onchange)
		{	
			this.ForAgentsRegistration_onchange();
		}
	}
	affiliationDropDownList.disabled = websiteTypeDropDownList.options[websiteTypeDropDownList.selectedIndex].value != "Agent";
}


