// JavaScript Document
var arrItems1 = new Array();
var arrItemsGrp1 = new Array();

arrItems1[11] = "B.B.A.";
arrItemsGrp1[11] = 1;
arrItems1[12] = "B.B.A. - I.T";
arrItemsGrp1[12] = 1;
arrItems1[13] = "B.C.A.";
arrItemsGrp1[13] = 1;
arrItems1[14] = "B.A.,LL.B & B.B.A., LL.B";
arrItemsGrp1[14] = 1;
arrItems1[15] = "B.Sc., Imaging Sciences(BIS)";
arrItemsGrp1[15] = 1;
arrItems1[16] = "BMLT";
arrItemsGrp1[16] = 1;
arrItems1[17] = "Bachelor of Arts";
arrItemsGrp1[17] = 1;
arrItems1[18] = "Bachelor of Commerce( B.Com.)";
arrItemsGrp1[18] = 1;
arrItems1[19] = "Bachelor of Computer Science";
arrItemsGrp1[19] = 1;


arrItems1[20] = "M.B.A.";
arrItemsGrp1[20] = 2;
arrItems1[21] = "M.Sc.";
arrItemsGrp1[21] = 2;
arrItems1[22] = "LAW";
arrItemsGrp1[22] = 2;
arrItems1[23] = "Health";
arrItemsGrp1[23] = 2;

arrItems1[24] = "Law";
arrItemsGrp1[24] = 3;
arrItems1[25] = "Management";
arrItemsGrp1[25] = 3;
arrItems1[26] = "Computer Studies";
arrItemsGrp1[26] = 3;
arrItems1[27] = "Others";
arrItemsGrp1[27] = 3;


arrItems1[28] = "PGDBA";
arrItemsGrp1[28] = 4;
arrItems1[29] = "PGDIB";
arrItemsGrp1[29] = 4;
arrItems1[30] = "PGDIT";
arrItemsGrp1[30] = 4;
arrItems1[31] = "PGDIM";
arrItemsGrp1[31] = 4;



var arrItems2 = new Array();
var arrItemsGrp2 = new Array();

arrItems2[101] = "Finance";
arrItemsGrp2[101] = 20
arrItems2[102] = "Personnel Management";
arrItemsGrp2[102] = 20

arrItems2[103] = "Human Resource";
arrItemsGrp2[103] = 20
arrItems2[104] = "Marketing";
arrItemsGrp2[104] = 20
arrItems2[105] = "Operations";
arrItemsGrp2[105] = 20
arrItems2[106] = "IT & Systems";
arrItemsGrp2[106] = 20

arrItems2[107] = "Economics-Statistics & Research";
arrItemsGrp2[107] = 20

arrItems2[108] = "Strategic Thinking";
arrItemsGrp2[108] = 20
arrItems2[109] = "Marcom";
arrItemsGrp2[109] = 20

arrItems2[110] = "International Business Management ";
arrItemsGrp2[110] = 20
arrItems2[111] = "Agri-Business Management";
arrItemsGrp2[111] = 20
arrItems2[112] = "Telecom Management ";
arrItemsGrp2[112] = 20
arrItems2[113] = "Information & Communication Technology Management";
arrItemsGrp2[113] = 20

arrItems2[114] = "Mass Communication";
arrItemsGrp2[114] = 20
arrItems2[115] = "Communication Management ";
arrItemsGrp2[115] = 20
arrItems2[116] = "Operations Management";
arrItemsGrp2[116] = 20

arrItems2[117] = "Geo-informatics";
arrItemsGrp2[117] = 20
arrItems2[118] = "Hospitals & Healthcare Management";
arrItemsGrp2[118] = 20
arrItems2[119] = "Information Technology";
arrItemsGrp2[119] = 20


arrItems2[120] = "Computer Application";
arrItemsGrp2[120] = 21


arrItems2[121] = "Masters of Law (LL.M.)";
arrItemsGrp2[121] = 22
arrItems2[122] = "Masters of Labour Laws & Labour Welfare";
arrItemsGrp2[122] = 22
arrItems2[123] = "PG Dip. in Tax Management & Tax Administration";
arrItemsGrp2[123] = 22

arrItems2[124] = "PG Dip. In Imaging Sciences";
arrItemsGrp2[124] = 23
arrItems2[125] = "PG Dip. In Medical Laboratory Technology";
arrItemsGrp2[125] = 23

arrItems2[126] = "PG Dip. In Hospital & Health Care Management";
arrItemsGrp2[126] = 23
arrItems2[127] = "PG Dip. In Fitness Management";
arrItemsGrp2[127] = 23

arrItems2[128] = "PG Dip. In Emergency, Medical Services";
arrItemsGrp2[128] = 23
arrItems2[129] = "PG Dip. In Medico Legal Systems";
arrItemsGrp2[129] = 23

function selectChange(control, controlToPopulate, ItemArray, GroupArray)
{
  var myEle ;
  var x ;
  
  for (var q=controlToPopulate.options.length;q>=0;q--) controlToPopulate.options[q]=null;
  if (control.name == "degree") {
    
    for (var q=form1.course.options.length;q>=0;q--) form1.course.options[q] = null;
 }
  
  myEle = document.createElement("option") ;
  myEle.value = 0 ;
  myEle.text = "Select" ;
  //myEle.disabled=false;
  controlToPopulate.add(myEle) ;
  
  for ( x = 0 ; x < ItemArray.length  ; x++ )
    {
      if ( GroupArray[x] == control.value )
        {
          myEle = document.createElement("option") ;
          myEle.value = x;
          myEle.text = ItemArray[x] ;
          controlToPopulate.add(myEle) ;
        }
    }
	
}
//  End -->

