﻿





//-----------------
function isEmailAddr(email) {
  var result = false;
  var theStr = new String(email);
  var index = theStr.indexOf("@");
  if (index > 0) {
    var pindex = theStr.indexOf(".",index);
    if ((pindex > index+1) && (theStr.length > pindex+1))
	result = true;
  }
  return result;
}
function validEmailId(formField,fieldLabel) {
	var result = true;
	
	if(formField.value=="")
  {
    alert("Enter your UserName");
	formField.focus();
    result=false;
  }
   else 
  {
if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(formField.value))) 
  {
    alert("The email you entered is not a valid email address.");
	formField.focus();
	formField.select();
     result= false;
  }
}
	return result;
}

function fieldEmpty(formField) {
	var result = true;
	
	if (formField.value == ""){
		result = false;
	}	
	return result;
}

function validSelection(formField,fieldLabel){
	var result = true;
	
	if (formField.options[0].selected) {
		alert('Please select a value for the "' + fieldLabel +'" field.');
		formField.focus();
		result = false;
	}	
	return result;
}

function validCheckbox(formField,fieldLabel) {
	var result = true;
	
	if (! formField.checked) {
		alert('Please select the "' + fieldLabel +'" field.');
		formField.focus();
		result = false;
	}	
	return result;
}


function validRequired(formField,fieldLabel){
	var result = true;
	
	if (formField.value == "") {
		alert('Please enter a value for the "' + fieldLabel +'" field.');
		formField.focus();
		result = false;
	}	
	return result;
}

function allDigits(str) {
	return inValidCharSet(str,"0123456789");
}

function allFloat(str) {
	return inValidCharSet(str,"0123456789.");
}

function inValidCharSet(str,charset){
	var result = true;

	// Note: doesn't use regular expressions to avoid early Mac browser bugs	
	for (var i=0;i<str.length;i++)
		if (charset.indexOf(str.substr(i,1))<0)	{
			result = false;
			break;
		}
	
	return result;
}

function validEmail(formField,fieldLabel,required) {
	var result = true;

	if (required && !validRequired(formField,fieldLabel))
		result = false;

	if (required)	{
		if (result && ((formField.value.length < 3) || !isEmailAddr(formField.value)) )	{
			alert("Please enter a complete email address in the form: yourname@yourdomain.com");
			formField.focus();
			result = false;
		}
	}
   
  return result;
}

function validNum(formField,fieldLabel,required) {
	var result = true;
	
	if (required && !validRequired(formField,fieldLabel))
		result = false;

	if (result)	{
 		if (!allDigits(formField.value)) {
 			alert('Please enter a number for the "' + fieldLabel +'" field.');
			formField.focus();
			formField.select();		
			result = false;
		}
	} 
	return result;
}


function validInt(formField,fieldLabel,required) {
	var result = true;

	if (required && !validRequired(formField,fieldLabel))
		result = false;
  
 	if (result)	{
 		var num = parseInt(formField.value);
 		if (isNaN(num))	{
 			alert('Please enter a number for the "' + fieldLabel +'" field.');
			formField.focus();	
			formField.select()	
			result = false;
		}
	} 
	return result;
}


function validDate(formField,fieldLabel,required) {
	var result = true;
	if (required && !validRequired(formField,fieldLabel)) 
		result = false;

	if (result)	{
 		if (formField.value){
			var elems = formField.value.split("/");
 		
 			result = (elems.length == 3); // should be three components
 		
 			if (result)	{
 				var day = parseInt(elems[0]);
  			var month = parseInt(elems[1]);
 				var year = parseInt(elems[2]);
				result = allDigits(elems[0]) && (month > 0) && (month < 13) &&
					 allDigits(elems[1]) && (day > 0) && (day < 32) &&
					 allDigits(elems[2]) && ((elems[2].length == 2) || (elems[2].length == 4));
 			}
		}

  	if (!result) {
 			alert('Please enter a date in the format DD/MM/YYYY for the "' + fieldLabel +'" field.');
			formField.focus();		
		}
	} 
	return result;
}

function validRadioSelected(formField,fieldLabel) {
	var radio_choice = false;
	for (counter = 0; counter < formField.length; counter++) {
		if (formField[counter].checked)
			radio_choice = true; 
	}

	if (!radio_choice) {
		alert('Please select a option for "' + fieldLabel + '" field.');
	} 
	return radio_choice;
}

function validFloat(formField,fieldLabel, required) {
	var result = true;
	
	if (required && !validRequired(formField,fieldLabel))
		result = false;

	if (result)	{
 		if (!allFloat(formField.value)) {
 			alert('Please enter a number for the "' + fieldLabel +'" field.');
			formField.focus();		
			result = false;
		}
	} 
	return result;
}

//-----------------
currentroleinjob = new Array(
new Array(
new Array("----- Select  Current Role -----", "0"),
new Array("---- Accounts -----", "Accounts"),
new Array("Accounts Exec./Accountant", "Accounts Exec./Accountant"),
new Array("Cost Accountant", "Cost Accountant"),
new Array("Taxation-Direct Mgr","Taxation-Direct Mgr"),
new Array("Taxation-Indirect Mgr", "Taxation-Indirect Mgr"),
new Array("Accounts Mgr", "Accounts Mgr"),	
new Array("Financial Accountant", "Financial Accountant"),
new Array("ICWA   ", "ICWA"),	
new Array("Chartered Accountant", "Chartered Accountant"),
new Array("---- Finance/Audit -----", "Finance/Audit"),
new Array("Finance Exec", "Finance Exec"),	
new Array("Credit/Control Exec", "Credit/Control Exec"),
new Array("Investor Relationship-Exec./Mgr", "Credit/Control Exec"),
new Array("Credit/Control Mgr", "Credit/Control Mgr"),
new Array("Financial Analyst ", "Financial Analyst "),
new Array("Audit Mgr", "Audit Mgr"),
new Array("Forex Mgr ", "Forex Mgr "),
new Array("Treasury Mgr ", "Treasury Mgr "),
new Array("Finance/Budgeting Mgr", "Finance/Budgeting Mgr"),
new Array("--- Snr. Mgmt----", "Snr. Mgmt"),
new Array("Head/VP/GM-Finance/Audit ", "Head/VP/GM-Finance/Audit"),
new Array("Head/VP/GM-Accounts", "Head/VP/GM-Accounts"),
new Array("Head/VP/GM-CFO/Financial Controller", "Head/VP/GM-CFO/Financial Controller"),
new Array("Head/VP/GM-Regulatory Affairs ", "Head/VP/GM-Regulatory Affairs"),
new Array("Company Secretary", "Company Secretary"),
new Array("--- Other---", "Other"),
new Array("Outside Consultant", "Outside Consultant"),
new Array("Fresher", "Fresher"),
new Array("Trainee", "Trainee"), 
new Array("Other", "Other")
),

new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Advtg ----", "Advtg"),
new Array("Client Servicing Exec.", "Client Servicing Exec."),
new Array("Account Director", "Account Director"),
new Array("Creative Director ", "Creative Director "),
new Array("Media Planning Exec./Mgr", "Media Planning Exec./Mgr"),
new Array("Media Buying Exec./Mgr", "Media Buying Exec./Mgr"),
new Array("Events/Promotion Exec.", "Events/Promotion Exec."),
new Array("Events/Promotion Mgr", "Events/Promotion Mgr"),
new Array("--- Mktg-----", "Mktg"),
new Array("Corp. Communication Exec.", "Corp. Communication Exec."),
new Array("Direct Mktg Exec.", "Direct Mktg Exec."),
new Array("Direct Mktg Mgr", "Direct Mktg Mgr"),
new Array("Product Exec.", "Product Exec."),
new Array("Product/Brand Mgr", "Product/Brand Mgr"),
new Array("Business Alliances Mgr ", "Business Alliances Mgr "),
new Array("Mktg Mgr", "Mktg Mgr"),
new Array("--- -Creative-----", "Creative"),
new Array("Art Director/Sr Art Director", "Art Director/Sr Art Director"),
new Array("Visualiser", "Visualiser"),
new Array("Copywriter", "Copywriter"),
new Array("Graphic Designer.", "Graphic Designer"),
new Array("--- MR---", "MR"),
new Array("MR Exec./Mgr", "MR Exec./Mgr"),
new Array("MR Field Supervisor", "MR Field Supervisor"),
new Array("--- Public Relations ", "Public Relations"),
new Array("PR & Media Relations Mgr", "PR & Media Relations Mgr"),
new Array("PR Exec. ", "PR Exec."),
new Array("---Snr. Mgmt---", "Snr. Mgmt"),
new Array("Head/Mgr/GM-Media Planning", "Head/Mgr/GM-Media Planning"),
new Array("Head/Mgr/GM-Media Buying", "Head/Mgr/GM-Media Buying"),
new Array("Head/VP/GM-PR/Corp. Communication", "Head/VP/GM-PR/Corp. Communication"),
new Array("Head/VP/GM-Mktg ", "Head/VP/GM-Mktg"),
new Array("Head/VP/GM-Business Alliances", "Head/VP/GM-Business Alliances"),
new Array("Head/VP/GM- MR", "Head/VP/GM- MR"),
new Array("Head/VP/GM-Client Servicing", "Head/VP/GM-Client Servicing"),
new Array("National Creative Director/VP-Creative", "National Creative Director/VP-Creative"),
new Array("--- Other --", "Other"),
new Array("Outside Consultant", "Outside Consultant"),
new Array("Trainee", "Trainee"),
new Array("Fresher", "Fresher"),
new Array("Other", "Other")

),
new Array(
new Array("--Select  Current Role--", "0"),
new Array("Agents", "Agents"),
new Array("Other", "Other")

),

new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Ticketing/Travel/Documentation ---", "Ticketing/Travel/Documentation"),
new Array("Travel Agent", "Travel Agent"),
new Array("Reservations Exec.", "Reservations Exec."),
new Array("Reservations Mgr", "Reservations Mgr"),
new Array("Tour Mngmt Exec.", "Tour Mngmt Exec."),
new Array("Tour Mgmt Mgr/Sr. Mgr", "Tour Mgmt Mgr/Sr. Mgr"),
new Array("Operations Exec.", "Operations Exec."),
new Array("BD Mgr", "BD Mgr"),
new Array("Mktg Mgr ", "Mktg Mgr "),
new Array("Branch Mgr", "Branch Mgr"),
new Array("Regional Mgr", "Regional Mgr"),
new Array("General Mgr", "General Mgr"),
new Array("Cashier/Billing Mgr", "Cashier/Billing Mgr"),
new Array("Operations Mgr", "Operations Mgr"),
new Array("--- Airline ---", "Airline"),
new Array("Cabin Crew", "Cabin Crew"),
new Array("Ground Staff", "Ground Staff"),
new Array("Aviation Engnr", "Aviation Engnr"),
new Array("Maintenance Engnr", "Maintenance Engnr"),
new Array("--- Snr. Mgmt ---", "Snr. Mgmt "),
new Array("SBU/Profit Center Head", "SBU/Profit Center Head"),
new Array("Head/VP/GM-Tour Management", "Head/VP/GM-Tour Management"),
new Array("CEO/MD/Director", "CEO/MD/Director"),
new Array("--- Other ---", "Other"),

new Array("Fresher", "Fresher"),
new Array("Trainee", "Trainee"),
new Array("Outside Consultant", "Outside Consultant"),
new Array("Wayanad", "261"),
new Array("Other", "Other")

),

new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- TV-News/Anchor/Reporter ---", "TV-News/Anchor/Reporter"),
new Array("News Anchor/TV Presenter", "News Anchor/TV Presenter"),
new Array("News Compiler", "News Compiler"),
new Array("Correspondent", "Correspondent"),
new Array("Sr/Principal Coresspondent", "Sr/Principal Coresspondent"),
new Array("News Editor", "News Editor"),
new Array("News/Features Head ", "News/Features Head "),
new Array("--- Production/Technical  ---", "Production/Technical"),
new Array("Spot Boy", "Spot Boy"),
new Array("Animation/Graphic Artist", "Animation/Graphic Artist"),
new Array("Stunt Coordinator", "Stunt Coordinator"),
new Array("Wardrobe/Make-Up/Hair Artist", "Wardrobe/Make-Up/Hair Artist"),
new Array("AV Editor", "AV Editor"),
new Array("Visualiser ", "Visualiser "),
new Array("Sound Mixer/Engr", "Sound Mixer/Engr"),
new Array("Locations Mgr", "Locations Mgr"),
new Array("Lighting Technician", "Lighting Technician"),
new Array("Special Effects Technician", "Special Effects Technician"),
new Array("Photographer", "Photographer"),
new Array("Camera Man/Technician", "Camera Man/Technician"),
new Array("Choreographer", "Choreographer"),
new Array("Asst. Editor/Editor", "Asst. Editor/Editor"),
new Array("Head-Lighting", "Head-Lighting"),
new Array("Head-Special Effects", "Head-Special Effects"),
new Array("Music Director", "Music Director"),
new Array("Cinematographer", "Cinematographer"),
new Array("Asst. Director/Director", "Asst. Director/Director"),
new Array("TV Producer", "TV Producer"),
new Array("Film Producer", "Film Producer"),
new Array("--- Other ---", "Other"),

new Array("Fresher", "Fresher"),
new Array("Trainee", "Trainee"),
new Array("Other", "Other")

),

new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Architectural Services ---", "Architectural Services"),
new Array("Architect", "Architect"),
new Array("Draughtsman", "Draughtsman"),
new Array("Project Architect ", "Project Architect "),
new Array("Naval Architect", "Naval Architect"),
new Array("Landscape Architect", "Landscape Architect"),
new Array("Town Planner", "Town Planner"),
new Array("--- Interior Design ---", "Interior Design"),
new Array("Interior Designer", "Interior Designer"),
new Array("--- Outside Consultant---", "Outside Consultant"),
new Array("Trainee", "Trainee"),
new Array("Fresher", "Fresher"),
new Array("Other", "Other")
),
new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Creative ---", "Creative"),
new Array("Art Director/Sr Art Director", "Art Director/Sr Art Director"),
new Array("Visualiser", "Visualiser"),
new Array("Web Designer", "Web Designer"),
new Array("Copywriter", "Copywriter"),
new Array("Graphic Designer", "Graphic Designer"),
new Array("--- Snr. Mgmt--", "Snr. Mgmt"),
new Array("Creative Director", "Creative Director"),
new Array("National Creative Director/VP-Creative ", "National Creative Director/VP-Creative "),
new Array("--- Other ---", "Other"),
new Array("Commercial Artist", "Commercial Artist"),

new Array("Fresher", "Fresher"),
new Array("Trainee ", "Trainee "),
new Array("Other", "Other")
),

new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Retail/Personal Banking ---", "Retail/Personal Banking "),
new Array("Cust. Service Exec.", "Cust. Service Exec."),
new Array("Cust. Service Mgr ", "Cust. Service Mgr "),
new Array("Collections Officer", "Collections Officer"),
new Array("Collections Mgr", "Collections Mgr"),
new Array("CRM/Phone/Internet Banking Exec.", "CRM/Phone/Internet Banking Exec."),
new Array("Sales Officer", "Sales Officer"),
new Array("Credit Officer", "Credit Officer"),
new Array("Branch Mgr", "Branch Mgr"),
new Array("Regional Mgr", "Regional Mgr"),
new Array("National Head", "National Head"),
new Array("Asset Operations/Documentation-Exec./Mgr", "Asset Operations/Documentation-Exec./Mgr"),
new Array("Domestic Private Banking-Exec./Mgr", "Domestic Private Banking-Exec./Mgr"),
new Array("Product Mgr-Auto/Home Loans ", "Product Mgr-Auto/Home Loans "),
new Array("--- Card Products --", "Card Products"),
new Array("Cards-Sales Officer/Exec.", "Cards-Sales Officer/Exec."),
new Array("Cards Operations Exec.", "Cards Operations Exec."),
new Array("Cards Operations Mgr", "Cards Operations Mgr"),
new Array("Collections Exec.", "Collections Exec."),
new Array("Card Approvals Officer", "Card Approvals Officer"),
new Array("Merchant Acquisition Exec.", "Merchant Acquisition Exec."),
new Array("Business Alliances Mgr", "Business Alliances Mgr"),
new Array("Product Mgr-Cards", "Product Mgr-Cards"),
new Array("--- Treasury ---", "Treasury"),
new Array("Back Office Exec.", "Back Office Exec."),
new Array("Money Markets Dealer", "Money Markets Dealer"),
new Array("Forex Dealer", "Forex Dealer"),
new Array("Sales/BD Mgr-Forex ", "Sales/BD Mgr-Forex "),
new Array("Forex Operations Mgr ", "Forex Operations Mgr "),
new Array("Debt Instrument Dealer", "Debt Instrument Dealer"),
new Array("Sales/BD Mgr-Debt Instruments ", "Sales/BD Mgr-Debt Instruments "),
new Array("Debt Operations Mgr", "Debt Operations Mgr"),
new Array("Derivatives Dealer", "Derivatives Dealer"),
new Array("Sales/BD Mgr-Derivatives", "Sales/BD Mgr-Derivatives"),
new Array("Treasury Operations Mgr ", "Treasury Operations Mgr "),
new Array("--- Operations/Processes/Finance/Legal ---", "Operations/Processes/Finance/Legal"),
new Array("Clearing Officer", "Clearing Officer"),
new Array("Cash Officer", "Cash Officer"),
new Array("Operations Officer", "Operations Officer"),
new Array("Operations Mgr", "Operations Mgr"),
new Array("Depository Services-Exec./Mgr", "Depository Services-Exec./Mgr"),
new Array("Legal Officer", "Legal Officer"),
new Array("Legal Mgr", "Legal Mgr"),
new Array("Operations Mgr", "Operations Mgr"),
new Array("Trade Finance Operations Mgr", "Trade Finance Operations Mgr"),
new Array("Technology Mgr", "Technology Mgr"),
new Array("ATM Operations Mgr", "ATM Operations Mgr"),
new Array("Audit Mgr ", "Audit Mgr "),
new Array("Finance/Budgeting Mgr", "Finance/Budgeting Mgr"),
new Array("--- Corporate Banking --", "Corporate Banking"),
new Array("Relationship Exec.", "Relationship Exec."),
new Array("Client Servicing/Key Account Mgr", "Client Servicing/Key Account Mgr"),
new Array("Credit Analyst-Corporate Banking ", "Credit Analyst-Corporate Banking "),
new Array("Credit Mgr-Corporate Banking", "Credit Mgr-Corporate Banking"),
new Array("Bad Debts/Workouts Mgr", "Bad Debts/Workouts Mgr"),
new Array("--- Investment Banking --", "Investment Banking"),
new Array("Debt Analyst", "Debt Analyst"),
new Array("Mergers & Acquisitions Analyst", "Mergers & Acquisitions Analyst"),
new Array("Equity Analyst", "Equity Analyst"),
new Array("Equity Mgr", "Equity Mgr"),
new Array("Domestic Debt Mgr", "Domestic Debt Mgr"),
new Array("Offshore Debt Mgr", "Offshore Debt Mgr"),
new Array("Mergers&Acquisitions Mgr", "Mergers&Acquisitions Mgr"),
new Array("Corporate Advisory Mgr", "Corporate Advisory Mgr"),
new Array("Project Finance Mgr", "Project Finance Mgr"),
new Array("Issues/IPO Mgr", "Issues/IPO Mgr"),
new Array("Legal Officer", "Legal Officer"),
new Array("Legal Mgr ", "Legal Mgr "),
new Array("--- Life ---", "Life"),
new Array("Insurance Analyst", "Insurance Analyst"),
new Array("Actuary Mgr", "Actuary Mgr"),
new Array("Underwriter", "Underwriter"),
new Array("Insurance Advisor", "Insurance Advisor"),
new Array("Unit Mgr", "Unit Mgr"),
new Array("Sales/BD-Mgr ", "Sales/BD-Mgr "),
new Array("Branch Mgr", "Branch Mgr"),
new Array("Product Mgr", "Product Mgr"),
new Array("Sales Head", "Sales Head"),
new Array("Regional Mgr", "Regional Mgr"),
new Array("Legal Officer", "Legal Officer"),
new Array("Legal Mgr", "Legal Mgr"),
new Array("--- General Insurance---", "General Insurance"),
new Array("Insurance Analyst", "Insurance Analyst"),
new Array("Actuary Mgr", "Actuary Mgr"),
new Array("Underwriter", "Underwriter"),
new Array("Head-Underwriting", "Head-Underwriting"),
new Array("Insurance Advisor", "Insurance Advisor"),
new Array("Unit Mgr", "Unit Mgr"),
new Array("Sales/BD-Mgr", "Sales/BD-Mgr"),
new Array("Branch Mgr", "Branch Mgr"),
new Array("Product Mgr", "Product Mgr"),
new Array("Sales Head", "Sales Head"),
new Array("Regional Mgr", "Regional Mgr"),
new Array("Legal Officer", "Legal Officer"),
new Array("Legal Mgr", "Legal Mgr"),
new Array("Banc Assurance", "Banc Assurance"),
new Array("--- Operations/Processes ---", "Operations/Processes "),
new Array("Insurance Operations Officer", "Insurance Operations Officer"),
new Array("Insurance Operations Mgr", "Insurance Operations Mgr"),
new Array("CRM/Cust. Service Exec.", "CRM/Cust. Service Exec."),
new Array("CRM/Cust. Service Mgr", "CRM/Cust. Service Mgr"),
new Array("Claims Exec.", "Claims Exec."),
new Array("Claims Mgr", "Claims Mgr"),
new Array("Investment/Treasury Mgr ", "Investment/Treasury Mgr "),
new Array("--- Stock Broking ---", "Stock Broking"),
new Array("Analyst", "Analyst"),
new Array("Broker/Trader", "Broker/Trader"),
new Array("Sales/BD Mgr-Broking", "Sales/BD Mgr-Broking"),
new Array("--- Mutual Funds/Fund Mgnmt/Asset Mgmt ---", "Mutual Funds/Fund Mgnmt/Asset Mgmt"),
new Array("Sales Exec./Investment Advisor ", "Sales Exec./Investment Advisor"),
new Array("Sales/BD Mgr", "Sales/BD Mgr"),
new Array("Mktg Mgr", "Mktg Mgr"),
new Array("Portfolio Mgr", "Portfolio Mgr"),
new Array("CRM/Cust. Service Exec.", "CRM/Cust. Service Exec."),
new Array("CRM/Cust. Service Mgr ", "CRM/Cust. Service Mgr "),
new Array("Operations Exec.", "Operations Exec."),
new Array("Operations Mgr", "Operations Mgr"),
new Array("Fund Mgr-Debt", "Fund Mgr-Debt"),
new Array("Fund Mgr-Equity", "Fund Mgr-Equity"),
new Array("Private Equity/Hedge Fund/VC-Mgr", "Private Equity/Hedge Fund/VC-Mgr"),
new Array("--- Snr. Mgmt ---", "Snr. Mgmt "),
new Array("Head/VP/GM-Treasury", "Head/VP/GM-Treasury"),
new Array("Head/VP/GM-Legal", "Head/VP/GM-Legal"),
new Array("Head/VP/GM-Operations", "Head/VP/GM-Operations"),
new Array("Head/VP/GM-CFO/Financial Controller ", "Head/VP/GM-CFO/Financial Controller "),
new Array("Head/VP/GM-Depository Services", "Head/VP/GM-Depository Services"),
new Array("Head/VP/GM-Relationships", "Head/VP/GM-Relationships"),
new Array("Head/VP/GM-Credit/Risk", "Head/VP/GM-Credit/Risk"),
new Array("Head/VP/GM-Equity", "Head/VP/GM-Equity"),
new Array("Head/VP/GM-Domestic/Offshore Debt ", "Head/VP/GM-Domestic/Offshore Debt "),
new Array("Head/VP/GM-Mergers & Acquisitions", "Head/VP/GM-Mergers & Acquisitions"),
new Array("Head/VP/GM-Corporate Advisory", "Head/VP/GM-Corporate Advisory"),
new Array("Head/VP/GM-Project Finance", "Head/VP/GM-Project Finance"),
new Array("Head/VP/GM-Investment Banking", "Head/VP/GM-Investment Banking"),
new Array("Head/VP/GM-Underwritting", "Head/VP/GM-Underwritting"),
new Array("Head/VP/GM-Mktg", "Head/VP/GM-Mktg"),
new Array("Head/VP/GM-Insurance Operations", "Head/VP/GM-Insurance Operations"),
new Array("Head/VP/GM-Claims", "Head/VP/GM-Claims"),
new Array("Head/VP/GM-Sales", "Head/VP/GM-Sales"),
new Array("Head/VP/GM-Fund Management", "Head/VP/GM-Fund Management"),
new Array("Head/VP/GM-Private Equity/Hedge Fund/VC", "Head/VP/GM-Private Equity/Hedge Fund/VC"),
new Array("Head/VP/GM-Broking", "Head/VP/GM-Broking"),
new Array("Other", "Other")
),

new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Content Development---", "Content Development"),
new Array("Content Developer", "Content Developer"),
new Array("Freelance Journalist", "Freelance Journalist"),
new Array("Business Content Developer", "Business Content Developer"),
new Array("Fashion Content Developer", "Fashion Content Developer"),
new Array("Features Content Developer", "Features Content Developer"),
new Array("Intnl Business Content Developer ", "Intnl Business Content Developer "),
new Array("IT/Technical Content Developer ", "IT/Technical Content Developer "),
new Array("Sports Content Developer", "Sports Content Developer"),
new Array("Political Content Developer", "Political Content Developer"),
new Array("--- Journalist/Writer ---", "Journalist/Writer"),
new Array("Journalist", "Journalist"),
new Array("Sub Editor/Reporter", "Sub Editor/Reporter"),
new Array("Sr Sub Editor/Sr Reporter", "Sr Sub Editor/Sr Reporter"),
new Array("Coresspondent/Asst. Editor/Associate Editor", "Coresspondent/Asst. Editor/Associate Editor"),
new Array("Principal Coresspondent/Features Writer", "Principal Coresspondent/Features Writer"),
new Array("Chief of Bureau/Editor in Chief", "Chief of Bureau/Editor in Chief"),
new Array("Investigative Journalist", "Investigative Journalist"),
new Array("Proof Reader", "Proof Reader"),
new Array("--- Editor ---", "--- Editor ---"),
new Array("Business Editor", "Business Editor"),
new Array("Fashion Editor", "Fashion Editor"),
new Array("Features Editor", "Features Editor"),
new Array("Intnl Business Editor", "Intnl Business Editor"),
new Array("IT/Technical Editor", "IT/Technical Editor"),
new Array("Managing Editor", "Managing Editor"),
new Array("Sports Editor", "Sports Editor"),
new Array("Political Editor", "Political Editor"),
new Array("--- Other---", "Other"),
new Array("Trainee", "Trainee"),
new Array("Fresher", "Fresher"),
new Array("Other", "Other")
),

new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Corporate Planning/Consulting ---", "--- Corporate Planning/Consulting ---"),
new Array("Outside Consultant", "Outside Consultant"),
new Array("Sr Outside Consultant", "Sr Outside Consultant"),
new Array("Corporate Planning/Strategy Mgr", "Corporate Planning/Strategy Mgr"),
new Array("Research Associate", "Research Associate"),
new Array("Business Analyst", "Business Analyst"),
new Array("EA to Chairman/President/VP", "EA to Chairman/President/VP"),
new Array("--- Snr Mgmt ---", "Snr Mgmt"),
new Array("Head/VP/GM-Corporate Planning/Strategy", "Head/VP/GM-Corporate Planning/Strategy"),
new Array("VP/President/Partner", "VP/President/Partner"),
new Array("CEO/MD/Director", "CEO/MD/Director"),
new Array("--- Other ---", "Other"),

new Array("Trainees", "Trainees"),
new Array("Freshers","Freshers"),
new Array("Other", "Other")
),
new Array(
new Array("--Select  Current Role--", "0"),
new Array("CEO/MD/Director", "CEO/MD/Director"),
new Array("Outside Consultant", "Outside Consultant"),
new Array("Director", "Director"),
new Array("VP/President/Partner", "VP/President/Partner"),
new Array("Other", "Other")
),

new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Documentation/Shipping ---", "Documentation/Shipping"),
new Array("Documentation/Shipping Exec./Mgr", "Documentation/Shipping Exec./Mgr"),
new Array("--- Production/Merchandising/BD --- ", "Production/Merchandising/BD  "),
new Array("Production Exec.", "Production Exec."),
new Array("Purchase Officer", "Purchase Officer"),
new Array("Floor Mgr ", "Floor Mgr "),
new Array("Production Mgr ", "Production Mgr "),
new Array("Merchandiser", "Merchandiser"),
new Array("QA/QC Exec.", "QA/QC Exec."),
new Array("QA/QC Mgr", "QA/QC Mgr"),
new Array("BD Mgr ", "BD Mgr "),
new Array("--- Snr. Mgmt --- ", "Snr. Mgmt"),
new Array("Head/VP/GM-Documentation/Shipping", "Head/VP/GM-Documentation/Shipping"),
new Array("Head/VP/GM-Production", "Head/VP/GM-Production"),
new Array("Head/VP/GM-Purchase", "Head/VP/GM-Purchase"),
new Array("VP/GM-Quality", "VP/GM-Quality"),
new Array("CEO/MD/Director ", "CEO/MD/Director "),
new Array("Liason Officer/Mgr", "Liason Officer/Mgr"),
new Array("Trader", "Trader"),
new Array("Agent", "Agent"),
new Array("--- Other ---", "Other"),
new Array("Fresher", "Fresher"),
new Array("Trainee ", "Trainee "),
new Array("Other", "Other")
),

new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Designer --", "Designer"),
new Array("Accessory Designer", "Accessory Designer"),
new Array("Apparel/Garment Designer", "Apparel/Garment Designer"),
new Array("Footwear Designer", "Footwear Designer"),
new Array("Merchandiser", "Merchandiser"),
new Array("Textile Designer", "Textile Designer"),
new Array("Jewellery Designer", "Jewellery Designer"),
new Array("--- Other --", "Other"),
new Array("Freelancer", "Freelancer"),

new Array("Fresher", "Fresher"),
new Array("Trainee ", "Trainee "),
new Array("Other", "Other")
),
new Array(
new Array("-- Select  Current Role --", "0"),
new Array("Stenographer/Data Entry Operator", "Stenographer/Data Entry Operator"),
new Array("Receptionist", "Receptionist"),
new Array("Secretary/PA", "Secretary/PA"),
new Array("--- Other ---", "Other"),

new Array("Fresher", "Fresher"),
new Array("Trainee", "Trainee"),
new Array("Other", "Other")
),
new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Food & Beverage", "Food & Beverage"),
new Array("Bartender", "Bartender"),
new Array("Commis", "Commis"),
new Array("Steward", "Steward"),
new Array("Captain", "Captain"),
new Array("Host/Hostess", "Host/Hostess"),
new Array("Chef De Partis", "Chef De Partis"),
new Array("Executive Sous Chef/Chef De Cuisine", "Executive Sous Chef/Chef De Cuisine"),
new Array("Sous Chef", "Sous Chef"),
new Array("Banquet Sales Exec./ Mgr", "Banquet Sales Exec./ Mgr"),
new Array("Restaurant Mgr", "Restaurant Mgr"),
new Array("F&B Mgr ", "F&B Mgr "),
new Array("General Manager", "General Manager"),
new Array("--- Housekeeping ---", "Housekeeping "),
new Array("Housekeeping Exec./Asst.", "Housekeeping Exec./Asst."),
new Array("Housekeeping Mgr", "Housekeeping Mgr"),
new Array("--- Front Office/Cust. Care ---", "Front Office/Cust. Care"),
new Array("Cashier", "Cashier"),
new Array("Front Office/Guest Relations Exec./Mgr ", "Front Office/Guest Relations Exec./Mgr "),
new Array("Travel Desk Mgr", "Travel Desk Mgr"),
new Array("Lobby/Duty Mgr", "Lobby/Duty Mgr"),
new Array("--- Senior Management --", "Senior Management"),
new Array("Executive/Master Chef", "Executive/Master Chef"),
new Array("Head/VP/GM-F&B", "Head/VP/GM-F&B"),
new Array("Head/VP/GM/National Manager-Sales", "Head/VP/GM/National Manager-Sales"),
new Array("Head/VP/-PR/Corp. Communication ", "Head/VP/-PR/Corp. Communication"),
new Array("Head/VP/GM-Accounts", "Head/VP/GM-Accounts"),
new Array("CEO/MD/Director", "CEO/MD/Director"),
new Array("--- Other Services ---", "Other Services"),
new Array("Health Club Asst./Mgr", "Health Club Asst./Mgr"),
new Array("Masseur", "Masseur"),
new Array("--- Other --", "Other"),
new Array("Fresher", "Fresher"),
new Array("Trainee", "Trainee"),
new Array("Other", "Other")
),
new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- HR/Admin/Facilities --", "HR/Admin/Facilities"),
new Array("HR Exec.", "HR Exec."),
new Array("HR Mgr", "HR Mgr"),
new Array("Recruitment Exec.", "Recruitment Exec."),
new Array("Recruitment Mgr", "Recruitment Mgr"),
new Array("Pay Roll/Compensation Mgr", "Pay Roll/Compensation Mgr"),
new Array("Performance Mgmt Mgr", "Performance Mgmt Mgr"),
new Array("Industrial/Labour Relations Mgr", "Industrial/Labour Relations Mgr"),
new Array("Training Mgr", "Training Mgr"),
new Array("Admin/Facilities Exec.", "Admin/Facilities Exec."),
new Array("Admin/Facilities Mgr", "Admin/Facilities Mgr"),
new Array("--- Snr. Mgmt --", "Snr. Mgmt "),
new Array("Head/VP/GM-HR", "Head/VP/GM-HR"),
new Array("Head/VP/GM-Training & Development", "Head/VP/GM-Training & Development"),
new Array("Head/VP/GM-Admin & Facilities", "Head/VP/GM-Admin & Facilities"),
new Array("Head/VP/GM-Recruitment", "Head/VP/GM-Recruitment"),
new Array("--- Other --", "Other"),
new Array("Outside Consultant", "Outside Consultant"),
new Array("Trainee", "Trainee"),
new Array("Fresher", "Fresher"),
new Array("Other", "Other")
),
new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Programming & Design --", "Programming & Design"),
new Array("Software Developer", "Software Developer"),
new Array("Team Lead/Tech Lead ", "Team Lead/Tech Lead "),
new Array("System Analyst", "System Analyst"),
new Array("Tech Architect", "Tech Architect"),
new Array("Database Architect/Designer", "Database Architect/Designer"),
new Array("Project Lead", "Project Lead"),
new Array("Testing Engnr ", "Testing Engnr "),
new Array("Product Mgr", "Product Mgr"),
new Array("Graphic/Web Designer", "Graphic/Web Designer"),
new Array("Release Mgr", "Release Mgr"),
new Array("--- Admin/Maintenance/Security/Datawarehousing --", "Admin/Maintenance/Security/Datawarehousing"),
new Array("DBA", "DBA"),
new Array("Network Admin", "Network Admin"),
new Array("System Admin ", "System Admin "),
new Array("System Security ", "System Security "),
new Array("Tech Support Engnr", "Tech Support Engnr"),
new Array("Maintenance Engnr", "Maintenance Engnr"),
new Array("Webmaster", "Webmaster"),
new Array("IT/Networking-Mgr", "IT/Networking-Mgr"),
new Array("Information Systems(MIS)-Mgr", "Information Systems(MIS)-Mgr"),
new Array("--- System Design/Implementation/ERP/CRM --", "System Design/Implementation/ERP/CRM "),
new Array("System Integration Techician", "System Integration Techician"),
new Array("Business Analyst", "Business Analyst"),
new Array("Datawarehousing Technician", "Datawarehousing Technician"),
new Array("Outside Technical Consultant", "Outside Technical Consultant"),
new Array("Functional Outside Consultant", "Functional Outside Consultant"),
new Array("EDP Analyst ", "EDP Analyst"),
new Array("--- QA/Testing/Documentation --", "QA/Testing/Documentation "),
new Array("Technical Writer", "Technical Writer"),
new Array("Instructional Designer", "Instructional Designer"),
new Array("Technical Documentor", "Technical Documentor"),
new Array("QA/QC Exec.", "QA/QC Exec."),
new Array("QA/QC Mgr", "QA/QC Mgr"),
new Array("--- Project Management --", "Project Management"),
new Array("Project Mgr-IT/Software", "Project Mgr-IT/Software"),
new Array("--- Senior Management --", "Senior Management"),
new Array("Program Mgr", "Program Mgr"),
new Array("Head/VP/GM-Quality ", "Head/VP/GM-Quality "),
new Array("Head/VP/GM-Technology(IT)/CTO", "Head/VP/GM-Technology(IT)/CTO"),
new Array("CIO", "CIO"),
new Array("--- Other --", "Other"),
new Array("Trainer/Faculty", "Trainer/Faculty"),
new Array("Trainee", "Trainee"),
new Array("Fresher", "Fresher"),
new Array("Outside Consultant", "Outside Consultant"),
new Array("IT/Technical Content Developer", "IT/Technical Content Developer"),
new Array("Other", "Other")
),

new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Voice --", "Voice"),
new Array("Associate/Sr. Associate -NonTechnical", "Associate/Sr. Associate -NonTechnica"),
new Array("Associate/Sr. Associate -Technical", "Associate/Sr. Associate -Technical"),
new Array("Team Leader -NonTechnical", "Team Leader -NonTechnical"),
new Array("Team Leader -Technical", "Team Leader -Technical"),
new Array("Asst. Mgr/Mgr -NonTechnical", "Asst. Mgr/Mgr -NonTechnical"),
new Array("Asst. Mgr/Mgr Technical", "Asst. Mgr/Mgr Technical"),
new Array("Telecalling/Telemarketing Exec.", "Telecalling/Telemarketing Exec."),
new Array("--- Back Office/Web/Transaction Processing --", "Back Office/Web/Transaction Processing"),
new Array("	Associate/Sr. Associate -NonTechnical", "Associate/Sr. Associate -NonTechnical"),
new Array("Associate/Sr. Associate -Technical", "Associate/Sr. Associate -Technical"),
new Array("Team Leader -NonTechnical", "Team Leader -NonTechnical"),
new Array("Team Leader -Technical", "Team Leader -Technical"),
new Array("Asst. Mgr/Mgr -Technical", "Asst. Mgr/Mgr -Technical"),
new Array("Asst. Mgr / Mgr -NonTechnical", "Asst. Mgr / Mgr -NonTechnical"),
new Array("--- Operations --", "Operations"),
new Array("Process Flow Analyst", "Process Flow Analyst"),
new Array("Business/EDP Analyst", "Business/EDP Analyst"),
new Array("BD Mgr", "BD Mgr"),
new Array("Transitions/Migrations Mgr", "Transitions/Migrations Mgr"),
new Array("Operations Mgr", "Operations Mgr"),
new Array("Infrastructure & Technology Mgr", "Infrastructure & Technology Mgr"),
new Array("Dialer Mgr", "Dialer Mgr"),
new Array("--- Training --", "Training "),
new Array("Technical/Process Trainer", "Technical/Process Trainer"),
new Array("Voice & Accent Trainer", "Voice & Accent Trainer"),
new Array("Soft Skills Trainer", "Soft Skills Trainer"),
new Array("--- Quality --", "Quality"),
new Array("QA/QC Exec.", "QA/QC Exec."),
new Array("QA/QC Mgr", "QA/QC Mgr"),
new Array("Quality Coach", "Quality Coach"),
new Array("Team Leader-QA/QC", "Team Leader-QA/QC"),
new Array("--- Snr. Mgmt --", "Snr. Mgmt"),
new Array("Head/VP/GM-Operations", "Head/VP/GM-Operations"),
new Array("Head/VP/GM-Training & Development", "Head/VP/GM-Training & Development"),
new Array("Head/VP/GM-Transitions", "Head/VP/GM-Transitions"),
new Array("Service Delivery Leader", "Service Delivery Leader"),
new Array("Head/VP/GM-QA & QC", "Head/VP/GM-QA & QC"),
new Array("--- Other --", "Other"),
new Array("Medical Transcriptionist", "Medical Transcriptionist"),
new Array("Fresher", "Fresher"),
new Array("Trainee", "Trainee"),
new Array("Outside Consultant", "Outside Consultant"),
new Array("Other", "Other")
), 
new Array(
new Array("--Select  Current Role--", "0"),
new Array("Apprentice/Intern ", "Apprentice/Intern "),
new Array("Private Attorney/Lawyer", "Private Attorney/Lawyer"),
new Array("Advisor/Outside Consultant", "Advisor/Outside Consultant"),
new Array("Law Officer", "Law Officer"),
new Array("Legal Mgr", "Legal Mgr"),
new Array("Company Secretary", "Company Secretary"),
new Array("Head/VP/GM-Legal", "Head/VP/GM-Legal"),
new Array("--- Drug Regulatory Affairs/Documentation --", "Drug Regulatory Affairs/Documentation"),
new Array("Drug Regulatory Dr.", "Drug Regulatory Dr."),
new Array("Documentation/Medical Writing", "Documentation/Medical Writing"),
new Array("Regulatory Affairs Mgr", "Regulatory Affairs Mgr"),
new Array("Head/VP/GM-Regulatory Affairs", "Head/VP/GM-Regulatory Affairs"),
new Array("--- Other --", "Other"),

new Array("Fresher", "Fresher"),
new Array("Trainee", "Trainee"),
new Array("Other", "Other")
),
new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- R&D --", "R&D"),
new Array("Clinical Research Associate/Scientist", "Clinical Research Associate/Scientist"),
new Array("Clinical Research Mgr", "Clinical Research Mgr"),
new Array("Analytical Chemistry Associate/Scientist", "Analytical Chemistry Associate/Scientist"),
new Array("Analytical Chemistry Mgr", "Analytical Chemistry Mgr"),
new Array("Chemical Research Associate/Scientist ", "Chemical Research Associate/Scientist "),
new Array("Chemical Research Mgr", "Chemical Research Mgr"),
new Array("Bio/Pharma Informatics-Associate/Scientist", "Bio/Pharma Informatics-Associate/Scientist"),
new Array("Formulation Scientist", "Formulation Scientist"),
new Array("Microbiologist", "Microbiologist"),
new Array("Molecular Biology", "Molecular Biology"),
new Array("Other Scientist", "Other Scientist"),
new Array("Nutritionist", "Nutritionist"),
new Array("Research Scientist", "Research Scientist"),
new Array("Bio-Tech Research Associate/Scientist", "Bio-Tech Research Associate/Scientist"),
new Array("Bio-Tech Research Mgr", "Bio-Tech Research Mgr"),
new Array("Pharmacist/Chemist/Bio Chemist", "Pharmacist/Chemist/Bio Chemist"),
new Array("Bio-Statistician", "Bio-Statistician"),
new Array("--- Medical Professional --", "Medical Professional"),
new Array("Chief Medical Officer/Head Medical Services", "Chief Medical Officer/Head Medical Services"),
new Array("Clinical Researcher", "Clinical Researcher"),
new Array("Intern", "Intern"),
new Array("Admin Services/Medical Facilities", "Admin Services/Medical Facilities"),
new Array("Lab Technician/Medical Technician/Lab Staff", "Lab Technician/Medical Technician/Lab Staff"),
new Array("Medical Officer", "Medical Officer"),
new Array("Nurse", "Nurse"),
new Array("Medical Superintendent/Director", "Medical Superintendent/Director"),
new Array("Anaesthesist", "Anaesthesist"),
new Array("Cardiologist ", "Cardiologist "),
new Array("Dermatologist", "Dermatologist"),
new Array("Dietician/Nutritionist ", "Dietician/Nutritionist "),
new Array("ENT Specialist", "ENT Specialist"),
new Array("General Practitioner", "General Practitioner"),
new Array("Gynaeocologist", "Gynaeocologist"),
new Array("Hepatologist", "Hepatologist"),
new Array("Microbiologist", "Microbiologist"),
new Array("Nephrologist", "Nephrologist"),
new Array("Neurologist", "Neurologist"),
new Array("Oncologist ", "Oncologist "),
new Array("Opthamologist", "Opthamologist"),
new Array("Orthopaedist", "Orthopaedist"),
new Array("Paramedic", "Paramedic"),
new Array("Pathologist", "Pathologist"),
new Array("Pediatrician", "Pediatrician"),
new Array("Pharmacist/Chemist/Bio Chemist", "Pharmacist/Chemist/Bio Chemist"),
new Array("Physiotherapist", "Physiotherapist"),
new Array("Psychiatrist", "Psychiatrist"),
new Array("Radiologist", "Radiologist"),
new Array("Surgeon", "Surgeon"),
new Array("Medical Rep.", "Medical Rep."),
new Array("--- Drug Regulatory Affairs/Documentation --", "Drug Regulatory Affairs/Documentation"),
new Array("Drug Regulatory Dr. ", "Drug Regulatory Dr. "),
new Array("Documentation/Medical Writing", "Documentation/Medical Writing"),
new Array("Regulatory Affairs Mgr", "Regulatory Affairs Mgr"),
new Array("Other", "Other")
),
new Array(
new Array("--Select  Current Role--", "0"),
new Array("Scientist", "Scientist"),
new Array("Packaging Development Exec./Mgr", "Packaging Development Exec./Mgr"),
new Array("Head/VP/GM-Packaging Development", "Head/VP/GM-Packaging Development"),
new Array("Outside Consultant", "Outside Consultant"),
new Array("Fresher", "Fresher"),
new Array("Trainee", "Trainee"),
new Array("Other", "Other")
),
new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Production/Manufacturing/Maintenance --", "Production/Manufacturing/Maintenance"),
new Array("Industrial Engnr ", "Industrial Engnr "),
new Array("Design Engnr/Mgr", "Design Engnr/Mgr"),
new Array("Factory Head", "Factory Head"),
new Array("Engineering Mgr", "Engineering Mgr"),
new Array("Production Mgr", "Production Mgr"),
new Array("QA/QC Exec.", "QA/QC Exec."),
new Array("QA/QC Mgr", "QA/QC Mgr"),
new Array("Product Development Exec.", "Product Development Exec."),
new Array("Product Development Mgr", "Product Development Mgr"),
new Array("Workman/Foreman/Technician ", "Workman/Foreman/Technician "),
new Array("Service/Maintenance Engnr", "Service/Maintenance Engnr"),
new Array("Service/Maintenance Supervisor", "Service/Maintenance Supervisor"),
new Array("Project Mgr-Production/Manufacturing", "Project Mgr-Production/Manufacturing"),
new Array("--- Safety/Health/Environment --", "Safety/Health/Environment"),
new Array("Safety Officer/Mgr", "Safety Officer/Mgr"),
new Array("Environment Engnr/Officer", "Environment Engnr/Officer"),
new Array("Health-Officer/Mgr", "Health-Officer/Mgr"),
new Array("---Snr. Mgmt --", "Snr. Mgmt"),
new Array("Head/VP/GM-QA/QC", "Head/VP/GM-QA/QC"),
new Array("Head/VP/GM-Production/Manufacturing", "Head/VP/GM-Production/Manufacturing"),
new Array("Head/VP/GM-Operations", "Head/VP/GM-Operations"),
new Array("SBU Head/Profit Centre Head ", "SBU Head/Profit Centre Head "),
new Array("Head/VP/GM-Regulatory Affairs", "Head/VP/GM-Regulatory Affairs"),
new Array("--- Other --", "Other"),
new Array("Outside Consultant", "Outside Consultant"),
new Array("Trainee", "Trainee"),
new Array("Fresher", "Fresher"),
new Array("Other", "Other")
),
new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Project Mgmt --", "Project Mgmt"),
new Array("Project Mgr-Telecom", "Project Mgr-Telecom"),
new Array("Project Mgr-IT/Software", "Project Mgr-IT/Software"),
new Array("Project Mgr-Production/Manufacturing", "Project Mgr-Production/Manufacturing"),
new Array("--- Site Engineers --", "Site Engineers"),
new Array("Civil Engnr-Telecom ", "Civil Engnr-Telecom "),
new Array("Civil Engnr-Municipal", "Civil Engnr-Municipal"),
new Array("Civil Engnr-Water/Wastewater", "Civil Engnr-Water/Wastewater"),
new Array("Civil Engnr-Land Development", "Civil Engnr-Land Development"),
new Array("Civil Engnr-Aviation", "Civil Engnr-Aviation"),
new Array("Civil Engnr-Highway Roadway", "Civil Engnr-Highway Roadway"),
new Array("Civil Engnr-Traffic ", "Civil Engnr-Traffic "),
new Array("Civil Engnr-Other", "Civil Engnr-Other"),
new Array("Electrical Engnr-Telecom", "Electrical Engnr-Telecom"),
new Array("Electrical Engnr-Commercial", "Electrical Engnr-Commercial"),
new Array("Electrical Engnr-Industrial", "Electrical Engnr-Industrial"),
new Array("Electrical Engnr-Utility", "Electrical Engnr-Utility"),
new Array("Electrical Engnr-Other", "Electrical Engnr-Other"),
new Array("Geotechnical Engnr", "Geotechnical Engnr"),
new Array("Mech. Engnr-Telecom", "Mech. Engnr-Telecom"),
new Array("Mech. Engnr-HVAC", "Mech. Engnr-HVAC"),
new Array("Mech. Engnr-Plumbing/Fire Protection", "Mech. Engnr-Plumbing/Fire Protection"),
new Array("Mech. Engnr-Other", "Mech. Engnr-Other"),
new Array("Process Engnr-Plant Design", "Process Engnr-Plant Design"),
new Array("Structural Engnr-Bridge", "Structural Engnr-Bridge"),
new Array("Structural Engnr-Building", "Structural Engnr-Building"),
new Array("Structural Engnr-Other", "Structural Engnr-Other"),
new Array("Geographic Information Systems/GIS", "Geographic Information Systems/GIS"),
new Array("Construction-General Building", "Construction-General Building"),
new Array("Construction-Heavy", "Construction-Heavy"),
new Array("Construction-Residential", "Construction-Residential"),
new Array("Construction-Specialty", "Construction-Specialty"),
new Array("Construction-Construction Management", "Construction-Other"),
new Array("Maintenance Engnr", "Maintenance Engnr"),
new Array("Engnr-Other", "Engnr-Other"),
new Array("Fresher", "Fresher"),
new Array("Trainee", "Trainee"),
new Array("Other", "Other")
),
new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Logistics ---", "Logistics"),
new Array("Store Keeper/Warehouse Assistant", "Store Keeper/Warehouse Assistant"),
new Array("Warehouse Mgr", "Warehouse Mgr"),
new Array("CFA ", "CFA "),
new Array("Logistics Exec.", "Logistics Exec."),
new Array("Logistics Mgr", "Logistics Mgr"),
new Array("Transport/Distribution Mgr", "Transport/Distribution Mgr"),
new Array("--- Purchase/Material Mgmt --", "Purchase/Material Mgmt"),
new Array("Purchase Exec.", "Purchase Exec."),
new Array("Purchase/Vendor Development Mgr", "Purchase/Vendor Development Mgr"),
new Array("Material Mgmt Exec./Mgr", "Material Mgmt Exec./Mgr"),
new Array("Commercial Mgr", "Commercial Mgr"),
new Array("QA/QC Exec.", "QA/QC Exec"),
new Array("QA/QC Mgr", "QA/QC Mgr"),
new Array("Commodity Trading Mgr", "Commodity Trading Mgr"),
new Array("--- Snr. Mgmt --", "--- Snr. Mgmt --"),
new Array("Head/VP/GM-SCM/Logistics", "Head/VP/GM-SCM/Logistics"),
new Array("Head/VP/GM-Commercial", "Head/VP/GM-Commercial"),
new Array("Head/VP/GM-Purchase/Material Mgmt", "Head/VP/GM-Purchase/Material Mgmt"),
new Array("--- Other --", "Other"),

new Array("Trainee", "Trainee"),
new Array("Fresher", "Fresher"),
new Array("Other", "Other")
),

new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- R&D --", "R&D"),
new Array("R&D Exec. ", "R&D Exec. "),
new Array("Clinical Research Associate/Scientist", "Clinical Research Associate/Scientist"),
new Array("Clinical Research Mgr", "Clinical Research Mgr"),
new Array("Analytical Chemistry Associate/Scientist", "Analytical Chemistry Associate/Scientist"),
new Array("Analytical Chemistry Mgr", "Analytical Chemistry Mgr"),
new Array("Chemical Research Associate/Scientist", "Chemical Research Associate/Scientist"),
new Array("Chemical Research Mgr", "Chemical Research Mgr"),
new Array("Bio/Pharma Informatics-Associate/Scientist", "Bio/Pharma Informatics-Associate/Scientist"),
new Array("Formulation Scientists", "Formulation Scientists"),
new Array("Microbiologist", "Microbiologist"),
new Array("Molecular Biology ", "Molecular Biology "),
new Array("Nutritionist", "Nutritionist"),
new Array("Research Scientist", "Research Scientist"),
new Array("Bio-Tech Research Associate/Scientist", "Bio-Tech Research Associate/Scientist"),
new Array("Bio-Tech Research Mgr", "Bio-Tech Research Mgr"),
new Array("Pharmacist/Chemist/Bio Chemist", "Pharmacist/Chemist/Bio Chemist"),
new Array("Bio-Statistician", "Bio-Statistician"),
new Array("Lab Technician/Medical Technician/Lab Staff", "Lab Technician/Medical Technician/Lab Staff"),
new Array("Product Development Exec.", "Product Development Exec."),
new Array("Product Development Mgr", "Product Development Mgr"),
new Array("Other Scientist ", "Other Scientist "),
new Array("--- Drug Regulatory Affairs/Documentation --", "Drug Regulatory Affairs/Documentation"),
new Array("Drug Regulatory Dr.", "Drug Regulatory Dr."),
new Array("Documentation/Medical Writing ", "Documentation/Medical Writing "),
new Array("Regulatory Affairs Mgr", "Regulatory Affairs Mgr"),
new Array("--- QA&QC-Compliance& Regulatory --", "QA&QC-Compliance& Regulatory"),
new Array("QA&QC-Executive", "QA&QC-Executive"),
new Array("QA&QC Mgr", "QA&QC Mgr"),
new Array("--- Engineering Design --", "Engineering Design"),
new Array("Design Engineer", "Design Engineer"),
new Array("Sr. Design Engineer", "Sr. Design Engineer"),
new Array("Tech. Lead/Project Lead", "Tech. Lead/Project Lead"),
new Array("--- Snr. Mgmt --", "Snr. Mgmt"),
new Array("Head/VP/GM-R&D", "Head/VP/GM-R&D"),
new Array("Head/VP/GM-Production", "Head/VP/GM-Production"),
new Array("Head/VP/GM-Formulations ", "Head/VP/GM-Formulations "),
new Array("Head/VP/GM-QA/QC", "Head/VP/GM-QA/QC"),
new Array("Head/VP/GM-Regulatory Affairs", "Head/VP/GM-Regulatory Affairs"),
new Array("--- Other --", "Other"),
new Array("Research Associate", "Research Associate"),
new Array("Fresher", "Fresher"),
new Array("Postdoc Position/Fellowship ", "Postdoc Position/Fellowship "),
new Array("Practical Training/Internship ", "Practical Training/Internship "),
new Array("Trainee", "Trainee"),
new Array("Other", "Other")
),

new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Retail Sales --", "Retail Sales"),
new Array("Sales Exec./Officer", "Sales Exec./Officer"),
new Array("Counter Sales", "Counter Sales"),
new Array("Medical Rep.", "Medical Rep."),
new Array("Merchandiser ", "Merchandiser"),
new Array("Sales/BD Mgr", "Sales/BD Mgr"),
new Array("Sales Promotion Mgr", "Sales Promotion Mgr"),
new Array("Retail Store Mgr", "Retail Store Mgr"),
new Array("Branch Mgr ", "Branch Mgr "),
new Array("Regional Mgr", "Regional Mgr"),
new Array("--- Corporate Sales ---", "Corporate Sales "),
new Array("Sales Exec./Officer ", "Sales Exec./Officer "),
new Array("Sales/BD Mgr ", "Sales/BD Mgr "),
new Array("Client Servicing/Key Account Mgr", "Client Servicing/Key Account Mgr"),
new Array("Branch Mgr/Regional Mgr", "Branch Mgr/Regional Mgr"),
new Array("--- Institutional Sales ---", "Institutional Sales"),
new Array("Sales Exec./Officer", "Sales Exec./Officer"),
new Array("Sales/BD Mgr", "Sales/BD Mgr"),
new Array("Sales Promotion Mgr ", "Sales Promotion Mgr "),
new Array("Banquet Sales Exec./Mgr", "Banquet Sales Exec./Mgr"),
new Array("Institutional Sales/BD Mgr", "Institutional Sales/BD Mgr"),
new Array("--- Sales Support ---", "Sales Support"),
new Array("Sales Trainer", "Sales Trainer"),
new Array("Telesales/Telemarketing Exec./Officer", "Telesales/Telemarketing Exec./Officer"),
new Array("Sales Promotion Mgr", "Sales Promotion Mgr"),
new Array("Front Desk/Cashier/Billing", "Front Desk/Cashier/Billing"),
new Array("--- Snr. Mgmt ---", "Snr. Mgmt"),
new Array("Head/VP/GM/National Mgr -Sales", "Head/VP/GM/National Mgr -Sales"),
new Array("--- Other ---", "Other"),

new Array("Trainee ", "Trainee "),
new Array("Fresher", "Fresher"),
new Array("Other", "Other")
),

new Array(
new Array("--Select  Current Role--", "0"),
new Array("Security Guard", "Security Guard"),
new Array("Security Supervisor", "Security Supervisor"),
new Array("Security Mgr", "Security Mgr"),
new Array("Policeman ", "Policeman "),
new Array("Army/Navy/Airforce Personnel", "Army/Navy/Airforce Personnel"),
new Array("Chief Security Officer", "Chief Security Officer"),
new Array("--- Other ---", "Other"),
new Array("Trainee", "Trainee"),
new Array("Fresher", "Fresher"),
new Array("Other", "Other")
),
new Array(
new Array("--Select  Current Role--", "0"),
new Array("Counsellor", "Counsellor"),
new Array("Lecturer/Professor", "Lecturer/Professor"),
new Array("Librarian", "Librarian"),
new Array("Teacher/ Private Tutor ", "Teacher/ Private Tutor "),
new Array("Special Education Teacher", "Special Education Teacher"),
new Array("Translator", "Translator"),
new Array("Transcriptionist", "Transcriptionist"),
new Array("--- Other --", "Other"),
new Array("Trainee", "Trainee"),
new Array("Fresher", "Fresher"),
new Array("Other", "Other")
),

new Array(
new Array("--Select  Current Role--", "0"),
new Array("--- Technical Support --", "Technical Support"),
new Array("Customer Support Engnr/Technician", "Customer Support Engnr/Technician"),
new Array("Technical Support Mgr", "Technical Support Mgr"),
new Array("Head/VP/GM-Tech. Support", "Head/VP/GM-Tech. Support"),
new Array("--- Telecom ---", "Telecom"),
new Array("RF Engnr", "RF Engnr"),
new Array("RF Installation Engnr", "RF Installation Engnr"),
new Array("RF System Designer", "RF System Designer"),
new Array("GPRS Engnr", "GPRS Engnr"),
new Array("GSM Engnr", "GSM Engnr"),
new Array("Embedded Technologies Engnr", "Embedded Technologies Engnr"),
new Array("Switching/Router Engnr", "Switching/Router Engnr"),
new Array("Mech. Engnr -Telecom", "Mech. Engnr -Telecom"),
new Array("Civil Engnr -Telecom", "Civil Engnr -Telecom"),
new Array("Electrical Engnr -Telecom ", "Electrical Engnr -Telecom "),
new Array("Network Planning Engnr", "Network Planning Engnr"),
new Array("Network Planning Manager", "Network Planning Manager"),
new Array("Security Engnr", "Security Engnr"),
new Array("Maintenance Engnr ", "Maintenance Engnr "),
new Array("--- IT Hardware --", "IT Hardware"),
new Array("Hardware Design Engnr", "Hardware Design Engnr"),
new Array("Tech Lead -Hardware Design", "Tech Lead -Hardware Design"),
new Array("Hardware Installation Technician", "Hardware Installation Technician"),
new Array("QA/QC Exec.", "QA/QC Exec."),
new Array("QA/QC Mgr", "QA/QC Mgr"),
new Array("Network Admin ", "Network Admin"),
new Array("System Admin", "System Admin"),
new Array("--- Project Mgmt --", "Project Mgmt"),
new Array("Project Mgr-Telecom", "Project Mgr-Telecom"),
new Array("--- Snr. Mgmt ---", "Snr. Mgmt"),
new Array("Head/VP/GM-Operations", "Head/VP/GM-Operations"),
new Array("Head/VP/GM-Quality", "Head/VP/GM-Quality"),
new Array("CEO/MD/Director", "CEO/MD/Director"),
new Array("SBU Head/Profit Centre Head ", "SBU Head/Profit Centre Head"),
new Array("CTO/Head/VP-Technology Telecom/ISP ", "CTO/Head/VP-Technology Telecom/ISP "),
new Array("CIO", "CIO"),
new Array("--- Other --", "Other"),
new Array("Outside Consultant", "Outside Consultant"),
new Array("Trainee", "Trainee"),
new Array("Fresher", "Fresher"),
new Array("Other", "Other")
),
new Array(
new Array("--Select  Current Role--", "0"),
new Array("CEO/MD/Director", "CEO/MD/Director"),
new Array("CIO", "CIO"),
new Array("Creative Director", "Creative Director"),
new Array("National Creative Director/VP-Creative", "National Creative Director/VP-Creative"),
new Array("CTO/Head/VP-Technology Telecom/ISP ", "CTO/Head/VP-Technology Telecom/ISP"),
new Array("Executive/Master Chef", "Executive/Master Chef"),
new Array("Head/VP/GM-Documentation/Shipping ", "Head/VP/GM-Documentation/Shipping "),
new Array("Head/VP/GM-BD ", "Head/VP/GM-BD "),
new Array("Head/VP/GM-Relationships", "Head/VP/GM-Relationships"),
new Array("Head/VP/GM-Transitions", "Head/VP/GM-Transitions"),
new Array("Head/VP/GM-HR", "Head/VP/GM-HR"),
new Array("Head/VP/GM-Training and Development", "Head/VP/GM-Training and Development"),
new Array("Head/VP/GM-Technology IT/CTO ", "Head/VP/GM-Technology IT /CTO"),
new Array("Head/Mgr/GM-Media Buying", "Head/Mgr/GM-Media Buying"),
new Array("Head/Mgr/GM-Media Planningr", "Head/Mgr/GM-Media Planning"),
new Array("Head/VP/GM-Operations", "Head/VP/GM-Operations"),
new Array("Head/VP/GM-SCM/Logistics ", "Head/VP/GM-SCM/Logistics "),
new Array("Head/VP/GM-Amin & Facilities", "Head/VP/GM-Amin & Facilities"),
new Array("Head/VP/GM-Commercial", "Head/VP/GM-Commercial"),
new Array("Head/VP/GM-Mktg ", "Head/VP/GM-Mktg"),
new Array("Head/VP/GM- MR ", "Head/VP/GM- MR"),
new Array("Head/VP/GM- Purchase/Material Mgmt ", "Head/VP/GM-Purchase/Material Mgmt"),
new Array("Head/VP/GM -Accounts ", "Head/VP/GM -Accounts "),
new Array("Head/VP/GM -F&B", "Head/VP/GM -F&B"),
new Array("Head/VP/GM-Business Alliances ", "Head/VP/GM-Business Alliances "),
new Array("Head/VP/GM-Finance/Audit", "Head/VP/GM-Finance/Audit"),
new Array("Head/VP/GM-Investment Banking", "Head/VP/GM-Investment Banking"),
new Array("Head/VP/GM-Private Equity/Hedge Fund/VC ", "Head/VP/GM-Private Equity/Hedge Fund/VC "),
new Array("Head/VP/GM-Project Finance ", "Head/VP/GM-Project Finance "),
new Array("Head/VP/GM-QA&amp;QC ", "Head/VP/GM-QA&amp;QC "),
new Array("Head/VP/GM-Quality ", "Head/VP/GM-Quality "),
new Array("Head/VP/GM-Sales ", "Head/VP/GM-Sales "),
new Array("Head/VP/GM-Underwritting ", "Head/VP/GM-Underwritting "),
new Array("Head/VP/GM-Operations ", "Head/VP/GM-Operations "),
new Array("Head/VP/GM-Fund Mgmt ", "Head/VP/GM-Fund Mgmt "),
new Array("Head/VP/GM -Credit/Risk ", "Head/VP/GM -Credit/Risk "),
new Array("Head/VP/GM-Depository Services ", "Head/VP/GM-Depository Services "),
new Array("Head/VP/GM-Legal ", "Head/VP/GM-Legal "),
new Array("Head/VP/GM-Production/Manufacturing/Maintenance ","Head/VP/GM-Production/Manufacturing/Maintenance"),
new Array("Head/VP/GM-Tour Mgmt ", "Head/VP/GM-Tour Mgmt "),
new Array("Head/VP/-PR/Corp. Communication ", " Head/VP/-PR/Corp.Communication "),
new Array("Head/VP/GM-Broking ", "Head/VP/GM-Broking "),
new Array("Head/VP/GM-CFO/Financial Controller ", " Head/VP/GM-CFO/Financial Controller "),
new Array("Head/VP/GM-Credit ", " Head/VP/GM-Credit "),
new Array("Head/VP/GM-R&amp;D ", " Head/VP/GM-R&amp;D "),
new Array("Head/VP/GM-Regulatory Affairs ", "Head/VP/GM-Regulatory Affairs "),
new Array("Head/VP/GM-Client Servicing ", " Head/VP/GM-Client Servicing "),
new Array("Head/VP/GM-Equity ", " Head/VP/GM-Equity "),
new Array("Head/VP/GM-Mergers & Acquisitions ", " Head/VP/GM-Mergers & Acquisitions "),
new Array("Head/VP/GM-Packaging Development ", " Head/VP/GM-Packaging Development "),
new Array("Head/VP/GM-Corporate Planning/Strategy ", " Head/VP/GM-Corporate Planning/Strategy "),
new Array("Head/VP/GM-Production ", " Head/VP/GM-Production  "),
new Array("Head/VP/GM-Treasury ", " Head/VP/GM-Treasury "),
new Array("Head/VP/GM-Corporate Advisory ", " Head/VP/GM-Corporate Advisory "),
new Array("Head/VP/GM-Domestic Debt ", " Head/VP/GM-Domestic Debt "),
new Array("Head/VP/GM-Formulations ", " Head/VP/GM-Formulations "),
new Array("Head/VP/GM-Insurance Operations ", " Head/VP/GM-Insurance Operations "),
new Array("Head/VP/GM-Offshore Debt ", " Head/VP/GM-Offshore Debt "),
new Array("Head/VP/GM/National Manager-Sales ", " Head/VP/GM/National Manager-Sales "),
new Array("SBU/Profit Center Head ", " SBU/Profit Center Head"),
new Array("Service Delivery Leader ", " Service Delivery Leader "),
new Array("VP/President/Partner", " VP/President/Partner"),
new Array("Head/VP/GM-Recruitment", " Head/VP/GM-Recruitment"),
new Array("Other", "Other")
),

new Array(
new Array("--Select  Current Role--", "0"),
new Array("Other", "Other")
), 
null,
new Array(
new Array("", "")
)
);

		
function fillSelectFromArray(selectCtrl, itemArray, goodPrompt, badPrompt, defaultItem) {
var i, j;
var prompt;
// empty existing items
for (i = selectCtrl.options.length; i >= 0; i--) {
selectCtrl.options[i] = null; 
}

prompt = (itemArray != null) ? goodPrompt : badPrompt;
//prompt val is always null

if (prompt == null) {
j = 0;
}
else {
selectCtrl.options[0] = new Option(prompt);
j = 1;
}
//j=0 only takes
if (itemArray != null) {
// add new items
for (i = 0; i < itemArray.length; i++) {
selectCtrl.options[j] = new Option(itemArray[i][0]);
if (itemArray[i][1] != null) {
selectCtrl.options[j].value = itemArray[i][1]; 
//if(itemArray[i][1]=="2"){
//document.write(selectCtrl.options[j].value);
//selectCtrl.options[j].class="heading2";
//}
}
j++;
}
// select first item (prompt) for sub list
selectCtrl.options[0].selected = true;
   }
   //document.getElementById("hidState").value=document.getElementById("ddlIndiaState").options[document.getElementById("ddlIndiaState").selectedIndex].text;
}




//-------------------------------My functions


// Ddl for Education // Array //


