var nChk1 = document.getElementsByName("checkCate ");    //체크되어있는 박스 value값 ( checkCate를 배열에 넣기 )
     
      for(j=0;j<nChk1.length;j++) {
          if(nChk[j].checked){                                                            //체크되어 있을경우
                  checkCate = nChk1[j].value;

                }         
      }

 

     checkCate를 출력하면 체크되어 있는 숫자가 나옵니다.