﻿ var ListCategoryID = new Array(); 
 var ListCategoryName = new Array(); 
 ListCategoryID[0] = '0' ; 
 ListCategoryName[0] = 'Chọn Ngành nghề' ; 
ListCategoryID[1] = '1'; 
ListCategoryName[1] = 'Kế toán/Tài chính'; 
ListCategoryID[2] = '2'; 
ListCategoryName[2] = 'Quảng cáo / Marketing'; 
ListCategoryID[3] = '3'; 
ListCategoryName[3] = 'Kiến Trúc - Xây Dựng ';
ListCategoryID[4] = '4'; 
ListCategoryName[4] = 'Dịch Vụ-Tư Vấn'; 
ListCategoryID[5] = '5'; 
ListCategoryName[5] = 'Giáo Dục'; 
ListCategoryID[6] = '6'; 
ListCategoryName[6] = 'Kỹ Thuật'; 
ListCategoryID[7] = '7'; 
ListCategoryName[7] = 'Nhân Sự'; 
ListCategoryID[8] = '8'; 
ListCategoryName[8] = 'Bảo Hiểm'; 
ListCategoryID[9] = '9'; 
ListCategoryName[9] = 'Tin học'; 
ListCategoryID[10] = '10'; 
ListCategoryName[10] = 'Bán Hàng'; 
ListCategoryID[11] = '11'; 
ListCategoryName[11] = 'Y-Dược'; 
ListCategoryID[12] = '12'; 
ListCategoryName[12] = 'Nhà Hàng-Khách Sạn-Du Lịch'; 
ListCategoryID[13] = '13'; 
ListCategoryName[13] = 'Dịch Vụ Vận Chuyển'; 
ListCategoryID[14] = '14'; 
ListCategoryName[14] = 'Dịch Vụ Văn Phòng'; 
ListCategoryID[15] = '15'; 
ListCategoryName[15] = 'Ngành Giải Trí '; 
ListCategoryID[16] = '16'; 
ListCategoryName[16] = 'Thể thao '; 
ListCategoryID[17] = '17'; 
ListCategoryName[17] = 'Lĩnh vực khác'; 

 function showjobcat(id_)
{
var r='';
 for(i=0;i<ListCategoryID.length;i++)
 {
	if(id_==ListCategoryID[i].toString())
	{
		r =  ListCategoryName[i].toString();
	}
 }
 
 document.write(r);
}