修改
   window.onload = function() { 
   var oBool = false; 
   var pSelect = document.all['pSelect']; 
   var cSelect = document.all['cSelect']; 
      for (var i in pList) { 
   pSelect.options.add(new Option(i, i)); 
   if (!oBool) { 
   for (var j in pList[i]) { 
   cSelect.options.add(new Option(pList[i][j], pList[i][j])); 
   } 
   oBool = true; 
   } 
   } 
   pSelect.selectedIndex = 0; 
   cSelect.selectedIndex = 0;     startList();   }