-
Notifications
You must be signed in to change notification settings - Fork 1
/
job_titles.sql
1826 lines (1823 loc) · 79.5 KB
/
job_titles.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
CREATE TABLE IF NOT EXISTS `job_title` (
`job_title_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_job_title_id` int(10) unsigned NOT NULL DEFAULT '0',
`title_en` varchar(255) NOT NULL,
`title_tr` varchar(255) NOT NULL,
`url` varchar(255) NOT NULL,
PRIMARY KEY (`job_title_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3788 ;
--
-- Dumping data for table `job_title`
--
INSERT INTO `job_title` (`job_title_id`, `parent_job_title_id`, `title_en`, `title_tr`, `url`) VALUES
(1, 0, 'Advertising', '', 'http://jobsearch.about.com/od/job-titles/a/advertising-job-titles.htm'),
(2, 0, 'Accounting', '', 'http://jobsearch.about.com/od/job-title-samples/a/accounting-job-titles.htm'),
(3, 0, 'Construction', '', 'http://jobsearch.about.com/od/job-title-samples/a/construction-job-titles.htm'),
(4, 0, 'Administrative', '', 'http://jobsearch.about.com/od/job-title-samples/a/admin-job-titles.htm'),
(5, 0, 'Business', '', 'http://jobsearch.about.com/od/job-title-samples/a/business-job-titles.htm'),
(6, 0, 'Engineering', '', 'http://jobsearch.about.com/od/job-title-samples/a/engineering-job-titles.htm'),
(7, 0, 'Corporate', '', 'http://jobsearch.about.com/od/job-title-samples/a/c-level-job-titles.htm'),
(8, 0, 'Entry Level', '', 'http://jobsearch.about.com/od/best-jobs/a/best-entry-level-jobs.htm'),
(9, 0, 'Hospitality', '', 'http://jobsearch.about.com/od/job-title-samples/a/hospitality-job-titles.htm'),
(10, 0, 'Health/Safety', '', 'http://jobsearch.about.com/od/job-title-samples/a/health-safety-job-titles.htm'),
(11, 0, 'First', '', 'http://jobsearch.about.com/od/justforstudents/a/first-job-list.htm'),
(12, 0, 'Social Media', '', 'http://jobsearch.about.com/od/job-title-samples/a/social-media-job-titles.htm'),
(13, 0, 'Real Estate', '', 'http://jobsearch.about.com/od/job-title-samples/a/real-estate-job-titles.htm'),
(14, 0, 'Health Care / Medical', '', 'http://jobsearch.about.com/od/job-title-samples/a/health-care-job-titles.htm'),
(15, 0, 'Insurance', '', 'http://jobsearch.about.com/od/job-title-samples/a/insurance-job-titles.htm'),
(16, 0, 'IT', '', 'http://jobsearch.about.com/od/job-title-samples/a/it-job-titles.htm'),
(17, 0, 'Legal', '', 'http://jobsearch.about.com/od/job-title-samples/a/legal-job-titles.htm'),
(18, 0, 'Maintenance', '', 'http://jobsearch.about.com/od/job-title-samples/a/maintenance-job-titles.htm'),
(19, 0, 'Chef', '', 'http://culinaryarts.about.com/od/culinaryfundamentals/a/whatisachef.htm'),
(20, 0, 'Manufacturing', '', 'http://jobsearch.about.com/od/job-title-samples/a/manufacturing-job-titles.htm'),
(21, 0, 'Event Planning', '', 'http://eventplanning.about.com/od/eventcareers/tp/corporateevents.htm'),
(22, 0, 'Media', '', 'http://jobsearch.about.com/od/job-title-samples/a/media-job-titles.htm'),
(23, 0, 'Non Profit', '', 'http://jobsearch.about.com/od/job-title-samples/a/nonprofit-job-titles.htm'),
(24, 0, 'Finance', '', 'http://financecareers.about.com/od/jobtitles/a/jobtitles.htm'),
(25, 0, 'Public Relations', '', 'http://jobsearch.about.com/od/job-title-samples/a/public-relations-job-titles.htm'),
(26, 0, 'Science', '', 'http://jobsearch.about.com/od/job-title-samples/a/science-job-titles.htm'),
(27, 0, 'Human Resources', '', 'http://humanresources.about.com/od/jobdescriptions/f/hr_job_mgr.htm'),
(28, 0, 'Geography', '', 'http://geography.about.com/od/careersingeography/a/jobsgeography.htm'),
(29, 0, 'Second', '', 'http://jobsearch.about.com/od/parttimejobs/a/best-second-jobs.htm'),
(30, 0, 'Social Work', '', 'http://jobsearch.about.com/od/job-title-samples/a/social-work-job-titles.htm'),
(31, 0, 'Transportation', '', 'http://jobsearch.about.com/od/job-title-samples/a/transportation-job-titles.htm'),
(32, 0, 'Psychology Related', '', 'http://psychology.about.com/od/careersinpsychology/a/career-list.htm'),
(2010, 1, 'Account Associate', '', ''),
(2011, 1, 'Account Coordinator', '', ''),
(2012, 1, 'Account Director', '', ''),
(2013, 1, 'Account Manager', '', ''),
(2014, 1, 'Account Specialist', '', ''),
(2015, 1, 'Account Representative', '', ''),
(2016, 1, 'Account Supervisor', '', ''),
(2017, 1, 'Advertising Assistant', '', ''),
(2018, 1, 'Advertising Buyer', '', ''),
(2019, 1, 'Advertising Campaign Manager', '', ''),
(2020, 1, 'Advertising Coordinator', '', ''),
(2021, 1, 'Advertising Copywriter', '', ''),
(2022, 1, 'Advertising Manager', '', ''),
(2023, 1, 'Advertising Sales Director', '', ''),
(2024, 1, 'Advertising Sales Representative', '', ''),
(2025, 1, 'Advertising Specialist', '', ''),
(2026, 1, 'Agency Account Coordinator', '', ''),
(2027, 1, 'Art Director', '', ''),
(2028, 1, 'Assistant Account Executive', '', ''),
(2029, 1, 'Assistant Buyer', '', ''),
(2030, 1, 'Assistant Media Planner', '', ''),
(2031, 1, 'Broadcast Account Manager', '', ''),
(2032, 1, 'Client Strategist', '', ''),
(2033, 1, 'Client Support Specialist', '', ''),
(2034, 1, 'Communications Coordinator', '', ''),
(2035, 1, 'Copy Associate', '', ''),
(2036, 1, 'Copy Editor', '', ''),
(2037, 1, 'Copywriter', '', ''),
(2038, 1, 'Creative Director', '', ''),
(2039, 1, 'Digital Media Planner', '', ''),
(2040, 1, 'Digital Advertising Specialist', '', ''),
(2041, 1, 'Digital Advertising Sales Manager', '', ''),
(2042, 1, 'Interactive Media Buyer', '', ''),
(2043, 1, 'Interactive Media Planner', '', ''),
(2044, 1, 'Internet Advertising Buyer', '', ''),
(2045, 1, 'Major Account Manager', '', ''),
(2046, 1, 'Marketing Coordinator', '', ''),
(2047, 1, 'Media Coordinator', '', ''),
(2048, 1, 'Media Director', '', ''),
(2049, 1, 'Media Planner', '', ''),
(2050, 1, 'Media Research Analyst', '', ''),
(2051, 1, 'Media Specialist', '', ''),
(2052, 1, 'Multi Media Sales Manager', '', ''),
(2053, 1, 'Multi Media Advertising Sales Manager', '', ''),
(2054, 1, 'National Account Coordinator', '', ''),
(2055, 1, 'Online Advertising Coordinator', '', ''),
(2056, 1, 'Online Advertising Director', '', ''),
(2057, 1, 'Online Advertising Manager', '', ''),
(2058, 1, 'Online Advertising Specialist', '', ''),
(2059, 1, 'Interactive Media Buyer', '', ''),
(2060, 1, 'Interactive Media Planner', '', ''),
(2061, 1, 'Preprint Analyst', '', ''),
(2062, 1, 'Print Traffic Coordinator', '', ''),
(2063, 1, 'Print Traffic Director', '', ''),
(2064, 1, 'Print Traffic Manager', '', ''),
(2065, 1, 'Sales Planner', '', ''),
(2066, 1, 'Social Media Advertising Manager', '', ''),
(2067, 1, 'Senior Account Director', '', ''),
(2068, 1, 'Target Marketing Strategist', '', ''),
(2069, 1, 'Traffic Manager', '', ''),
(2070, 1, 'Advertising Job Titles', '', ''),
(2071, 2, 'Accounting Clerk', '', ''),
(2072, 2, 'Accounting Clerk Leader', '', ''),
(2073, 2, 'Accounting Director', '', ''),
(2074, 2, 'Accounting Manager', '', ''),
(2075, 2, 'Accounting Supervisor', '', ''),
(2076, 2, 'Accounting Vice President', '', ''),
(2077, 2, 'Accounts Supervisor', '', ''),
(2078, 2, 'Assistant Director of Finance', '', ''),
(2079, 2, 'Assistant Director of Financial Operations', '', ''),
(2080, 2, 'Audit Supervisor', '', ''),
(2081, 2, 'Auditor', '', ''),
(2082, 2, 'Bookkeeper', '', ''),
(2083, 2, 'Budget Analyst', '', ''),
(2084, 2, 'Budget Manager', '', ''),
(2085, 2, 'Bursar', '', ''),
(2086, 2, 'Certified Public Accountant', '', ''),
(2087, 2, 'Chief Accounting Officer', '', ''),
(2088, 2, 'Chief Financial Officer', '', ''),
(2089, 2, 'Compliance Auditor', '', ''),
(2090, 2, 'Contracts and Financial Compliance Manager', '', ''),
(2091, 2, 'Controller', '', ''),
(2092, 2, 'Corporate Accountant', '', ''),
(2093, 2, 'Cost Accountant', '', ''),
(2094, 2, 'Director of Financial Operations', '', ''),
(2095, 2, 'Environmental Auditor', '', ''),
(2096, 2, 'External Auditor', '', ''),
(2097, 2, 'Financial Analyst', '', ''),
(2098, 2, 'Financial Assurance Manager', '', ''),
(2099, 2, 'Financial Assurance Specialist', '', ''),
(2100, 2, 'Forensic Accountant', '', ''),
(2101, 2, 'Gift Administration Specialist', '', ''),
(2102, 2, 'Gift Assurance Officer', '', ''),
(2103, 2, 'Government Accountant', '', ''),
(2104, 2, 'Government Auditor', '', ''),
(2105, 2, 'Grants and Contracts Assistant', '', ''),
(2106, 2, 'Grants and Contracts Specialist', '', ''),
(2107, 2, 'Industrial Accountant', '', ''),
(2108, 2, 'Information Technology Audit Manager', '', ''),
(2109, 2, 'Information Technology Auditor', '', ''),
(2110, 2, 'Internal Auditor', '', ''),
(2111, 2, 'Management Accountant', '', ''),
(2112, 2, 'Managerial Accountant', '', ''),
(2113, 2, 'Payroll Manager', '', ''),
(2114, 2, 'Payroll Services Analyst', '', ''),
(2115, 2, 'Private Accountant', '', ''),
(2116, 2, 'Public Accountant', '', ''),
(2117, 2, 'Revenue Cycle Administrator', '', ''),
(2118, 2, 'Revenue Cycle Manager', '', ''),
(2119, 2, 'Revenue Cycle Supervisor', '', ''),
(2120, 2, 'Senior Auditor', '', ''),
(2121, 2, 'Senior Budget Analyst', '', ''),
(2122, 2, 'Senior Cash Management Analyst', '', ''),
(2123, 2, 'Senior Financial Analyst', '', ''),
(2124, 2, 'Senior General Audit Manager', '', ''),
(2125, 2, 'Senior Gift Assurance Officer', '', ''),
(2126, 2, 'Senior Grants and Contracts Specialist', '', ''),
(2127, 2, 'Senior Strategic Planner', '', ''),
(2128, 2, 'Staff Accountant', '', ''),
(2129, 2, 'Staff Auditor', '', ''),
(2130, 2, 'Strategic Planner', '', ''),
(2131, 2, 'Strategic Planning and Institutional Analysis Manager', '', ''),
(2132, 2, 'Strategic Program Planning Advisor', '', ''),
(2133, 2, 'Tax Accountant', '', ''),
(2134, 2, 'Tax Specialist', '', ''),
(2135, 2, 'Accounting Job Titles', '', ''),
(2136, 3, 'Apprentice', '', ''),
(2137, 3, 'Assistant Project Manager', '', ''),
(2138, 3, 'Building Inspector', '', ''),
(2139, 3, 'Carpenter', '', ''),
(2140, 3, 'Civil Engineer', '', ''),
(2141, 3, 'Concrete Laborers', '', ''),
(2142, 3, 'Construction Assistant', '', ''),
(2143, 3, 'Construction Coordinator', '', ''),
(2144, 3, 'Construction Engineer', '', ''),
(2145, 3, 'Construction Foreman', '', ''),
(2146, 3, 'Construction Manager', '', ''),
(2147, 3, 'Construction Superintendent', '', ''),
(2148, 3, 'Construction Supervisor', '', ''),
(2149, 3, 'Construction Worker', '', ''),
(2150, 3, 'Contract Administrator', '', ''),
(2151, 3, 'Contract Manager', '', ''),
(2152, 3, 'Crane Operator', '', ''),
(2153, 3, 'Dry Wall Finisher', '', ''),
(2154, 3, 'Dry wall Installer', '', ''),
(2155, 3, 'Estimator', '', ''),
(2156, 3, 'Electrician', '', ''),
(2157, 3, 'Equipment Operator', '', ''),
(2158, 3, 'Field Engineer', '', ''),
(2159, 3, 'Framing Carpenter', '', ''),
(2160, 3, 'General Laborer', '', ''),
(2161, 3, 'Inspector', '', ''),
(2162, 3, 'Iron Worker', '', ''),
(2163, 3, 'Joiner', '', ''),
(2164, 3, 'Laborer', '', ''),
(2165, 3, 'Master Electrician', '', ''),
(2166, 3, 'Master Plumber', '', ''),
(2167, 3, 'Painter', '', ''),
(2168, 3, 'Pipe Fitter', '', ''),
(2169, 3, 'Planner', '', ''),
(2170, 3, 'Plumber', '', ''),
(2171, 3, 'Purchasing Coordinator', '', ''),
(2172, 3, 'Project Assistant', '', ''),
(2173, 3, 'Project Manager', '', ''),
(2174, 3, 'Roofer', '', ''),
(2175, 3, 'Safety Director', '', ''),
(2176, 3, 'Safety Manager', '', ''),
(2177, 3, 'Scheduler', '', ''),
(2178, 3, 'Signal Worker', '', ''),
(2179, 3, 'Site Manager', '', ''),
(2180, 3, 'Superintendent', '', ''),
(2181, 3, 'Surveyor', '', ''),
(2182, 3, 'Welder', '', ''),
(2183, 3, 'Construction Job Titles', '', ''),
(2184, 4, 'Administrative Assistant', '', ''),
(2185, 4, 'Administrative Coordinator', '', ''),
(2186, 4, 'Administrative Services Manager', '', ''),
(2187, 4, 'Administrative Services Officer', '', ''),
(2188, 4, 'Administrative Support Manager', '', ''),
(2189, 4, 'Administrative Support Supervisor', '', ''),
(2190, 4, 'Assistant Director', '', ''),
(2191, 4, 'Billing Clerk', '', ''),
(2192, 4, 'Client Relations Manager', '', ''),
(2193, 4, 'Contract Administrator', '', ''),
(2194, 4, 'Credit Clerk', '', ''),
(2195, 4, 'Data Entry', '', ''),
(2196, 4, 'Executive Assistant', '', ''),
(2197, 4, 'Executive Services Administrator', '', ''),
(2198, 4, 'Facility Manager', '', ''),
(2199, 4, 'General Office Clerk', '', ''),
(2200, 4, 'Information Clerk', '', ''),
(2201, 4, 'Legal Secretary', '', ''),
(2202, 4, 'Mail Clerk', '', ''),
(2203, 4, 'Mail Clerk Leader', '', ''),
(2204, 4, 'Mail Equipment Operator', '', ''),
(2205, 4, 'Medical Secretary', '', ''),
(2206, 4, 'Office Clerk', '', ''),
(2207, 4, 'Office Manager', '', ''),
(2208, 4, 'Office Support Manager', '', ''),
(2209, 4, 'Office Support Supervisor', '', ''),
(2210, 4, 'Program Manager', '', ''),
(2211, 4, 'Receptionist', '', ''),
(2212, 4, 'Records Management Analyst', '', ''),
(2213, 4, 'Secretary', '', ''),
(2214, 4, 'Senior Administrative Analyst', '', ''),
(2215, 4, 'Senior Administrative Coordinator', '', ''),
(2216, 4, 'Senior Administrative Services Officer', '', ''),
(2217, 4, 'Senior Coordinator', '', ''),
(2218, 4, 'Senior Executive Assistant', '', ''),
(2219, 4, 'Senior Special Events Coordinator', '', ''),
(2220, 4, 'Senior Support Assistant', '', ''),
(2221, 4, 'Senior Support Specialist', '', ''),
(2222, 4, 'Special Events Coordinator', '', ''),
(2223, 4, 'Special Programs Coordinator', '', ''),
(2224, 4, 'Staff Assistant', '', ''),
(2225, 4, 'Support Assistant', '', ''),
(2226, 4, 'Support Specialist', '', ''),
(2227, 4, 'Typist', '', ''),
(2228, 4, 'Virtual Assistant', '', ''),
(2229, 4, 'Virtual Receptionist', '', ''),
(2230, 4, 'Word Processor', '', ''),
(2231, 4, 'Administrative Job Titles', '', ''),
(2232, 5, 'Actuary', '', ''),
(2233, 5, 'Assessor', '', ''),
(2234, 5, 'Benefits Officer', '', ''),
(2235, 5, 'Branch Manager', '', ''),
(2236, 5, 'Budget Analyst', '', ''),
(2237, 5, 'Cash Manager', '', ''),
(2238, 5, 'Certified Financial Planner', '', ''),
(2239, 5, 'Chartered Wealth Manager', '', ''),
(2240, 5, 'Chief Executive Officer', '', ''),
(2241, 5, 'Chief Financial Officer', '', ''),
(2242, 5, 'Claims Adjuster', '', ''),
(2243, 5, 'Commercial Appraiser', '', ''),
(2244, 5, 'Commercial Real Estate Agent', '', ''),
(2245, 5, 'Commercial Real Estate Broker', '', ''),
(2246, 5, 'Controller', '', ''),
(2247, 5, 'Credit Analyst', '', ''),
(2248, 5, 'Credit Manager', '', ''),
(2249, 5, 'Damage Appraiser', '', ''),
(2250, 5, 'Financial Analyst', '', ''),
(2251, 5, 'Hedge Fund Manager', '', ''),
(2252, 5, 'Hedge Fund Principal', '', ''),
(2253, 5, 'Hedge Fund Trader', '', ''),
(2254, 5, 'Insurance Adjuster', '', ''),
(2255, 5, 'Insurance Agent', '', ''),
(2256, 5, 'Insurance Appraiser', '', ''),
(2257, 5, 'Insurance Broker', '', ''),
(2258, 5, 'Insurance Claims Examiner', '', ''),
(2259, 5, 'Insurance Investigator', '', ''),
(2260, 5, 'Investment Advisor', '', ''),
(2261, 5, 'Investment Banker', '', ''),
(2262, 5, 'Investor Relations Officer', '', ''),
(2263, 5, 'Leveraged Buyout Investor', '', ''),
(2264, 5, 'Loan Officer', '', ''),
(2265, 5, 'Loss Control Specialist', '', ''),
(2266, 5, 'Mortgage Banker', '', ''),
(2267, 5, 'Mutual Fund Analyst', '', ''),
(2268, 5, 'Portfolio Management Marketing', '', ''),
(2269, 5, 'Portfolio Manager', '', ''),
(2270, 5, 'Ratings Analyst', '', ''),
(2271, 5, 'Real Estate Appraiser', '', ''),
(2272, 5, 'Real Estate Officer', '', ''),
(2273, 5, 'Residential Appraiser', '', ''),
(2274, 5, 'Residential Real Estate Agent', '', ''),
(2275, 5, 'Residential Real Estate Broker', '', ''),
(2276, 5, 'Risk Manager', '', ''),
(2277, 5, 'Service Representative', '', ''),
(2278, 5, 'Stockbroker', '', ''),
(2279, 5, 'Treasurer', '', ''),
(2280, 5, 'Trust Officer', '', ''),
(2281, 5, 'Underwriter', '', ''),
(2282, 5, 'Business Job Titles', '', ''),
(2283, 6, 'Aerospace Engineer', '', ''),
(2284, 6, 'Agricultural Engineer', '', ''),
(2285, 6, 'Application Engineer', '', ''),
(2286, 6, 'Automotive Engineer', '', ''),
(2287, 6, 'Biological Engineer', '', ''),
(2288, 6, 'Biomedical Engineer', '', ''),
(2289, 6, 'Boiler Engineer', '', ''),
(2290, 6, 'Ceramics Engineer', '', ''),
(2291, 6, 'Chemical Engineer', '', ''),
(2292, 6, 'Chief Engineer', '', ''),
(2293, 6, 'Civil Engineer', '', ''),
(2294, 6, 'Commissioning Engineer', '', ''),
(2295, 6, 'Compliance Engineer', '', ''),
(2296, 6, 'Component Engineer', '', ''),
(2297, 6, 'Computer Hardware Engineer', '', ''),
(2298, 6, 'Computer Software Engineer', '', ''),
(2299, 6, 'Construction Engineer', '', ''),
(2300, 6, 'Contract Engineer', '', ''),
(2301, 6, 'Controls Engineer', '', ''),
(2302, 6, 'Cost Engineer', '', ''),
(2303, 6, 'Design Engineer', '', ''),
(2304, 6, 'Director of Engineering', '', ''),
(2305, 6, 'Drafting Technician', '', ''),
(2306, 6, 'Drilling Engineer', '', ''),
(2307, 6, 'Electrical Design Engineer', '', ''),
(2308, 6, 'Electrical Engineer', '', ''),
(2309, 6, 'Electrical Field Engineer', '', ''),
(2310, 6, 'Engineering Aide', '', ''),
(2311, 6, 'Engineering Clerk', '', ''),
(2312, 6, 'Engineering Executive', '', ''),
(2313, 6, 'Engineering Manager', '', ''),
(2314, 6, 'Engineering Secretary', '', ''),
(2315, 6, 'Engineering Technician', '', ''),
(2316, 6, 'Entry Level Engineer', '', ''),
(2317, 6, 'Environmental Engineer', '', ''),
(2318, 6, 'Environmental Compliance Engineer', '', ''),
(2319, 6, 'Environmental Health Safety Engineer', '', ''),
(2320, 6, 'Equipment Engineer', '', ''),
(2321, 6, 'E/M Engineer', '', ''),
(2322, 6, 'Facilities Engineer', '', ''),
(2323, 6, 'Field Service Engineer', '', ''),
(2324, 6, 'Fire Protection Engineer', '', ''),
(2325, 6, 'Firmware Engineer', '', ''),
(2326, 6, 'Frontend Engineer', '', ''),
(2327, 6, 'Geological Engineer', '', ''),
(2328, 6, 'Hardware Engineer', '', ''),
(2329, 6, 'Health and Safety Engineer', '', ''),
(2330, 6, 'Industrial Engineer', '', ''),
(2331, 6, 'Instrumentation Engineer', '', ''),
(2332, 6, 'I&C Engineer', '', ''),
(2333, 6, 'Junior Engineer', '', ''),
(2334, 6, 'Lead Engineer', '', ''),
(2335, 6, 'Licensing Engineer', '', ''),
(2336, 6, 'Logistics Engineer', '', ''),
(2337, 6, 'Maintenance Engineer', '', ''),
(2338, 6, 'Manager of Engineering', '', ''),
(2339, 6, 'Manufacturing Engineer', '', ''),
(2340, 6, 'Marine Engineer', '', ''),
(2341, 6, 'Materials Engineer', '', ''),
(2342, 6, 'Mechanical Design Engineer', '', ''),
(2343, 6, 'Mechanical Engineer', '', ''),
(2344, 6, 'Metallurgical Engineer', '', ''),
(2345, 6, 'Mining Engineer', '', ''),
(2346, 6, 'Mining Safety Engineer', '', ''),
(2347, 6, 'Naval Architect', '', ''),
(2348, 6, 'Nuclear Engineer', '', ''),
(2349, 6, 'Network Engineer', '', ''),
(2350, 6, 'Operations Engineer', '', ''),
(2351, 6, 'Packaging Engineer', '', ''),
(2352, 6, 'Performance Engineer', '', ''),
(2353, 6, 'Petroleum Engineer', '', ''),
(2354, 6, 'Pipeline Engineer', '', ''),
(2355, 6, 'Piping Engineer', '', ''),
(2356, 6, 'Piping Stress Engineer', '', ''),
(2357, 6, 'Planning Engineer', '', ''),
(2358, 6, 'Plant Engineer', '', ''),
(2359, 6, 'Plastics Engineer', '', ''),
(2360, 6, 'Power Engineer', '', ''),
(2361, 6, 'Process Control Engineer', '', ''),
(2362, 6, 'Process Design Engineer', '', ''),
(2363, 6, 'Process Engineer', '', ''),
(2364, 6, 'Product Design/Development Engineer', '', ''),
(2365, 6, 'Product Engineer', '', ''),
(2366, 6, 'Production Engineer', '', ''),
(2367, 6, 'Project Controls Engineer', '', ''),
(2368, 6, 'Project Engineer', '', ''),
(2369, 6, 'Project Assistant', '', ''),
(2370, 6, 'Proposal Engineering Coordinator', '', ''),
(2371, 6, 'Protection Engineer', '', ''),
(2372, 6, 'Quality Assurance Engineer', '', ''),
(2373, 6, 'Quality Control Engineer', '', ''),
(2374, 6, 'Quality Engineer', '', ''),
(2375, 6, 'Relay Engineer', '', ''),
(2376, 6, 'Reliability Engineer', '', ''),
(2377, 6, 'Research Engineer', '', ''),
(2378, 6, 'Research and Development Engineer', '', ''),
(2379, 6, 'Reservoir Engineer', '', ''),
(2380, 6, 'RF Engineer', '', ''),
(2381, 6, 'Rotating Equipment Engineer', '', ''),
(2382, 6, 'R&D Engineer', '', ''),
(2383, 6, 'Safety Engineer', '', ''),
(2384, 6, 'Sales Engineer', '', ''),
(2385, 6, 'SCADA Engineer', '', ''),
(2386, 6, 'Security Engineer', '', ''),
(2387, 6, 'Senior Electrical Engineer', '', ''),
(2388, 6, 'Senior Manufacturing Engineer', '', ''),
(2389, 6, 'Senior Mechanical Engineer', '', ''),
(2390, 6, 'Senior Process Engineer', '', ''),
(2391, 6, 'Software Engineer', '', ''),
(2392, 6, 'Staff Engineer', '', ''),
(2393, 6, 'Staking Engineer', '', ''),
(2394, 6, 'Stationary Engineer', '', ''),
(2395, 6, 'Structural Engineer', '', ''),
(2396, 6, 'Substation Engineer', '', ''),
(2397, 6, 'Systems Engineer', '', ''),
(2398, 6, 'Technical Support Engineer', '', ''),
(2399, 6, 'Telecommunications Engineer', '', ''),
(2400, 6, 'Test Engineer', '', ''),
(2401, 6, 'Transmission Engineer', '', ''),
(2402, 6, 'Transmission Planning Engineer', '', ''),
(2403, 6, 'Turbine Engineer', '', ''),
(2404, 6, 'Validation Engineer', '', ''),
(2405, 6, 'Vice President of Engineering', '', ''),
(2406, 6, 'Welding Engineer', '', ''),
(2407, 6, 'Engineering Job Titles', '', ''),
(2408, 7, 'Corporate Job Titles', '', ''),
(2409, 8, 'Account Coordinator', '', ''),
(2410, 8, 'Actuarial Analyst', '', ''),
(2411, 8, 'Actuarial Assistant', '', ''),
(2412, 8, 'Advertising Sales Assistant', '', ''),
(2413, 8, 'Allocation Analyst', '', ''),
(2414, 8, 'Auditor', '', ''),
(2415, 8, 'Buyer Trainee', '', ''),
(2416, 8, 'Claims Adjuster', '', ''),
(2417, 8, 'Computer Programmer', '', ''),
(2418, 8, 'Consulting Analyst', '', ''),
(2419, 8, 'Copywriter', '', ''),
(2420, 8, 'Credit Analyst', '', ''),
(2421, 8, 'Editorial Assistant', '', ''),
(2422, 8, 'Environmental Engineering Technician', '', ''),
(2423, 8, 'Financial Analyst', '', ''),
(2424, 8, 'Human Resources Assistant', '', ''),
(2425, 8, 'IT Analyst', '', ''),
(2426, 8, 'Junior Accountant', '', ''),
(2427, 8, 'Junior Chemist', '', ''),
(2428, 8, 'Junior Engineer', '', ''),
(2429, 8, 'Marketing Analyst', '', ''),
(2430, 8, 'Marketing Assistant', '', ''),
(2431, 8, 'Occupational Therapist', '', ''),
(2432, 8, 'Operations Analyst', '', ''),
(2433, 8, 'Physical Therapist', '', ''),
(2434, 8, 'Recruiting Assistant', '', ''),
(2435, 8, 'Registered Nurse', '', ''),
(2436, 8, 'Research Assistant', '', ''),
(2437, 8, 'Research Associate', '', ''),
(2438, 8, 'Research Technician', '', ''),
(2439, 8, 'Retail Management Trainee', '', ''),
(2440, 8, 'Sales Assistant', '', ''),
(2441, 8, 'Sales Trainee', '', ''),
(2442, 8, 'Social Media Specialist', '', ''),
(2443, 8, 'Social Worker', '', ''),
(2444, 8, 'Special Educator', '', ''),
(2445, 8, 'Teacher', '', ''),
(2446, 8, 'Underwriter', '', ''),
(2447, 8, 'Underwriter Assistant', '', ''),
(2448, 8, 'List of Best Entry Level Jobs', '', ''),
(2449, 9, 'Back Office Assistant', '', ''),
(2450, 9, 'Back Office Supervisor', '', ''),
(2451, 9, 'Backwaiter', '', ''),
(2452, 9, 'Banquet Server', '', ''),
(2453, 9, 'Banquet Manager', '', ''),
(2454, 9, 'Bartender', '', ''),
(2455, 9, 'Bar Staff', '', ''),
(2456, 9, 'Bell Attendant', '', ''),
(2457, 9, 'Bellhop', '', ''),
(2458, 9, 'Bellman', '', ''),
(2459, 9, 'Bellperson', '', ''),
(2460, 9, 'Busser', '', ''),
(2461, 9, 'Cafe Manager', '', ''),
(2462, 9, 'Catering Manager', '', ''),
(2463, 9, 'Catering Sales Manager', '', ''),
(2464, 9, 'Chef', '', ''),
(2465, 9, 'Concierge', '', ''),
(2466, 9, 'Concierge Agent', '', ''),
(2467, 9, 'Cook', '', ''),
(2468, 9, 'Corporate Sales Manager', '', ''),
(2469, 9, 'Crew Member', '', ''),
(2470, 9, 'Director of Hotel Sales', '', ''),
(2471, 9, 'Director of Hotel Operations', '', ''),
(2472, 9, 'Director of Operations', '', ''),
(2473, 9, 'Director of Maintenance', '', ''),
(2474, 9, 'Director of Marketing', '', ''),
(2475, 9, 'Director of Sales', '', ''),
(2476, 9, 'Dishwasher', '', ''),
(2477, 9, 'Driver', '', ''),
(2478, 9, 'Events Manager', '', ''),
(2479, 9, 'Executive Housekeeper', '', ''),
(2480, 9, 'Executive Conference Manager', '', ''),
(2481, 9, 'Executive Meeting Manager', '', ''),
(2482, 9, 'Food and Beverage Manager', '', ''),
(2483, 9, 'Food Runner', '', ''),
(2484, 9, 'Food Server', '', ''),
(2485, 9, 'Front Desk Clerk', '', ''),
(2486, 9, 'Front Desk Agent', '', ''),
(2487, 9, 'Front Desk Associate', '', ''),
(2488, 9, 'Front Desk Sales and Service Associate', '', ''),
(2489, 9, 'Front Office Associate', '', ''),
(2490, 9, 'Front Office Attendant', '', ''),
(2491, 9, 'Front Office Associate', '', ''),
(2492, 9, 'Front Office Supervisor', '', ''),
(2493, 9, 'Guest Room Sales Manager', '', ''),
(2494, 9, 'General Manager', '', ''),
(2495, 9, 'Greeter', '', ''),
(2496, 9, 'Group Sales Coordinator', '', ''),
(2497, 9, 'Group Sales Manager', '', ''),
(2498, 9, 'Guest Services Associate', '', ''),
(2499, 9, 'Guest Services Coordinator', '', ''),
(2500, 9, 'Guest Services Manager', '', ''),
(2501, 9, 'Guest Service Representative', '', ''),
(2502, 9, 'Host', '', ''),
(2503, 9, 'Hostess', '', ''),
(2504, 9, 'Hotel Deposit Clerk', '', ''),
(2505, 9, 'Hotel Group Sales Manager', '', ''),
(2506, 9, 'Housekeeper', '', ''),
(2507, 9, 'Housekeeper Aide', '', ''),
(2508, 9, 'Housekeeping Supervisor', '', ''),
(2509, 9, 'Kitchen Team Member', '', ''),
(2510, 9, 'Lead Housekeeper', '', ''),
(2511, 9, 'Marketing Coordinator', '', ''),
(2512, 9, 'Meeting Coordinator', '', ''),
(2513, 9, 'Meeting Concierge', '', ''),
(2514, 9, 'Meeting Specialist', '', ''),
(2515, 9, 'Meeting Manager', '', ''),
(2516, 9, 'Night Auditor', '', ''),
(2517, 9, 'Night Clerk', '', ''),
(2518, 9, 'Public Relations Coordinator', '', ''),
(2519, 9, 'Public Relations Manager', '', ''),
(2520, 9, 'Reservations Agent', '', ''),
(2521, 9, 'Restaurant Manager', '', ''),
(2522, 9, 'Room Attendant', '', ''),
(2523, 9, 'Room Service Manager', '', ''),
(2524, 9, 'Room Service Worker', '', ''),
(2525, 9, 'Sales and Marketing Coordinator', '', ''),
(2526, 9, 'Sales Coordinator', '', ''),
(2527, 9, 'Sales Manager', '', ''),
(2528, 9, 'Server', '', ''),
(2529, 9, 'Shift Leader', '', ''),
(2530, 9, 'Shift Manager', '', ''),
(2531, 9, 'Team Member', '', ''),
(2532, 9, 'Transportation Coordinator', '', ''),
(2533, 9, 'Valet Attendant', '', ''),
(2534, 9, 'Valet Parker', '', ''),
(2535, 9, 'Valet Parking Attendant', '', ''),
(2536, 9, 'Waiter', '', ''),
(2537, 9, 'Waitress', '', ''),
(2538, 9, 'Wait Staff', '', ''),
(2539, 9, 'Wedding Coordinator', '', ''),
(2540, 9, 'Wedding Sales Manager', '', ''),
(2541, 9, 'Hospitality Job Titles', '', ''),
(2542, 10, 'Arson Investigator', '', ''),
(2543, 10, 'Cargo Surveyor', '', ''),
(2544, 10, 'Claims and Insurance Analyst', '', ''),
(2545, 10, 'Compliance Investigator', '', ''),
(2546, 10, 'Corporate Safety Director', '', ''),
(2547, 10, 'Correctional Officer', '', ''),
(2548, 10, 'Deputy Fire Marshal', '', ''),
(2549, 10, 'Director of Safety and Wellness', '', ''),
(2550, 10, 'Enforcement Officer', '', ''),
(2551, 10, 'Environment Protection Specialist', '', ''),
(2552, 10, 'Environmental Health Specialist', '', ''),
(2553, 10, 'Environmental Health and Safety Delivery Specialist', '', ''),
(2554, 10, 'Environmental Health and Safety Engineer', '', ''),
(2555, 10, 'Environmental Health and Safety Manager', '', ''),
(2556, 10, 'Environmental Protection Specialist', '', ''),
(2557, 10, 'Environmental Quality Analyst', '', ''),
(2558, 10, 'Environmental Scientist', '', ''),
(2559, 10, 'Epidemic Intelligence Service Officer', '', ''),
(2560, 10, 'Epidemiologist', '', ''),
(2561, 10, 'Ergonomist', '', ''),
(2562, 10, 'Field Safety Officer', '', ''),
(2563, 10, 'Fire Fighter', '', ''),
(2564, 10, 'Fire Inspector', '', ''),
(2565, 10, 'Fire Investigator', '', ''),
(2566, 10, 'Fire Marshall', '', ''),
(2567, 10, 'Fire Prevention Inspector', '', ''),
(2568, 10, 'Fire Prevention Specialist', '', ''),
(2569, 10, 'Fire and Explosion Investigator', '', ''),
(2570, 10, 'Fish and Game Warden', '', ''),
(2571, 10, 'Health and Safety Manager', '', ''),
(2572, 10, 'Industrial Hygiene/Safety Engineer', '', ''),
(2573, 10, 'Industrial Hygienist', '', ''),
(2574, 10, 'Infection Control Practitioner', '', ''),
(2575, 10, 'Injury/Safety Hazard Assessment', '', ''),
(2576, 10, 'Inspector', '', ''),
(2577, 10, 'Investigator', '', ''),
(2578, 10, 'Jailer', '', ''),
(2579, 10, 'Loss Control Consultant', '', ''),
(2580, 10, 'Marine Cargo Surveyor', '', ''),
(2581, 10, 'Marine Surveyor', '', ''),
(2582, 10, 'Occupational Health Analyst', '', ''),
(2583, 10, 'Occupational Health Nurse', '', ''),
(2584, 10, 'Petroleum Inspector', '', ''),
(2585, 10, 'Police Officer', '', ''),
(2586, 10, 'Product Responsibility Liaison', '', ''),
(2587, 10, 'Product Safety Consultant', '', ''),
(2588, 10, 'Product Safety Engineer', '', ''),
(2589, 10, 'Product Safety Manager', '', ''),
(2590, 10, 'Regional Safety Manager', '', ''),
(2591, 10, 'Risk Control Consultant', '', ''),
(2592, 10, 'Risk Control Representative', '', ''),
(2593, 10, 'Risk Management Coordinator', '', ''),
(2594, 10, 'Safety Director', '', ''),
(2595, 10, 'Safety Engineer', '', ''),
(2596, 10, 'Safety Technician', '', ''),
(2597, 10, 'Security Guard', '', ''),
(2598, 10, 'Surveyor', '', ''),
(2599, 10, 'System Safety Engineer', '', ''),
(2600, 10, 'Toxics Program Officer', '', ''),
(2601, 10, 'Waste Management Specialist', '', ''),
(2602, 10, 'Health/Safety Job Titles', '', ''),
(2603, 11, 'Amusement Ride Attendant', '', ''),
(2604, 11, 'Babysitter', '', ''),
(2605, 11, 'Baseball Umpire for Little League', '', ''),
(2606, 11, 'Basketball Referee for Juniors', '', ''),
(2607, 11, 'Busser', '', ''),
(2608, 11, 'Camp Counselor', '', ''),
(2609, 11, 'Camp Counselor in Training', '', ''),
(2610, 11, 'Car Wash Attendant', '', ''),
(2611, 11, 'Child Care Assistant', '', ''),
(2612, 11, 'Concession Worker', '', ''),
(2613, 11, 'Counselor In Training', '', ''),
(2614, 11, 'Dishwasher', '', ''),
(2615, 11, 'Dog Walker', '', ''),
(2616, 11, 'Drugstore Cashier', '', ''),
(2617, 11, 'Farmhand', '', ''),
(2618, 11, 'Fast Food Worker', '', ''),
(2619, 11, 'Food Prep Worker', '', ''),
(2620, 11, 'Food Service Worker at Nursing Home', '', ''),
(2621, 11, 'Golf Caddy', '', ''),
(2622, 11, 'Household Chores', '', ''),
(2623, 11, 'Kennel Assistant', '', ''),
(2624, 11, 'Lawn Mower/Landscaper', '', ''),
(2625, 11, 'Lifeguard', '', ''),
(2626, 11, 'Music Teacher for Young Children', '', ''),
(2627, 11, 'Nursery Worker', '', ''),
(2628, 11, 'Paper Delivery Person', '', ''),
(2629, 11, 'Pet Sitter', '', ''),
(2630, 11, 'Receptionist', '', ''),
(2631, 11, 'Restaurant Hostess/Host', '', ''),
(2632, 11, 'Retail Store Sales Clerk', '', ''),
(2633, 11, 'Soccer Referee for Juniors', '', ''),
(2634, 11, 'Ticket Taker', '', ''),
(2635, 11, 'Tutor', '', ''),
(2636, 11, 'Waiter/Waitress', '', ''),
(2637, 11, 'List of First Job Ideas', '', ''),
(2638, 12, 'Blogger', '', ''),
(2639, 12, 'Brand Ambassador', '', ''),
(2640, 12, 'Brand Manager', '', ''),
(2641, 12, 'Community Manager', '', ''),
(2642, 12, 'Content Manager', '', ''),
(2643, 12, 'Content Strategist', '', ''),
(2644, 12, 'Digital Communications Professional', '', ''),
(2645, 12, 'Digital Content Manager', '', ''),
(2646, 12, 'Digital Media Manager', '', ''),
(2647, 12, 'Digital Media Supervisor', '', ''),
(2648, 12, 'Director of Social Media', '', ''),
(2649, 12, 'Director of Social Media Communications', '', ''),
(2650, 12, 'Director of Social Media Strategy', '', ''),
(2651, 12, 'Engagement Coordinator', '', ''),
(2652, 12, 'Engagement Manager', '', ''),
(2653, 12, 'Interactive Media Associate', '', ''),
(2654, 12, 'Interactive Media Coordinator', '', ''),
(2655, 12, 'Interactive Media Manager', '', ''),
(2656, 12, 'Internet Marketing Coordinator', '', ''),
(2657, 12, 'Internet Marketing Manager', '', ''),
(2658, 12, 'Manager Digital and Social Media', '', ''),
(2659, 12, 'Online Content Coordinator', '', ''),
(2660, 12, 'Social Media Account Executive', '', ''),
(2661, 12, 'Social Media Analyst', '', ''),
(2662, 12, 'Social Media Assistant', '', ''),
(2663, 12, 'Social Media Associate', '', ''),
(2664, 12, 'Social Media Coordinator', '', ''),
(2665, 12, 'Social Media Designer', '', ''),
(2666, 12, 'Social Media Editor', '', ''),
(2667, 12, 'Social Media Marketing Coordinator', '', ''),
(2668, 12, 'Social Media Manager', '', ''),
(2669, 12, 'Social Media Specialist', '', ''),
(2670, 12, 'Social Media Strategist', '', ''),
(2671, 12, 'Social Media Job Titles', '', ''),
(2672, 13, 'Agent', '', ''),
(2673, 13, 'Appraiser', '', ''),
(2674, 13, 'Appraisal Manager', '', ''),
(2675, 13, 'Assistant Broker', '', ''),
(2676, 13, 'Associate Broker', '', ''),
(2677, 13, 'Broker', '', ''),
(2678, 13, 'Building Inspector', '', ''),
(2679, 13, 'Closing Agent', '', ''),
(2680, 13, 'Closing Coordinator', '', ''),
(2681, 13, 'Commercial Real Estate Broker', '', ''),
(2682, 13, 'Direct of Real Estate', '', ''),
(2683, 13, 'Foreclosure Specialist', '', ''),
(2684, 13, 'Home Inspector', '', ''),
(2685, 13, 'Inspector', '', ''),
(2686, 13, 'Licensed Real Estate Appraiser', '', ''),
(2687, 13, 'Licensed Sales Consultant', '', ''),
(2688, 13, 'Loan Documents Coordinator', '', ''),
(2689, 13, 'Loan Documents Closer', '', ''),
(2690, 13, 'Loan Processor', '', ''),
(2691, 13, 'Loan Underwriter', '', ''),
(2692, 13, 'Marketing Coordinator', '', ''),
(2693, 13, 'Mortgage Advisor', '', ''),
(2694, 13, 'Mortgage Consultant', '', ''),
(2695, 13, 'Mortgage Coordinator', '', ''),
(2696, 13, 'Mortgage Loan Processor', '', ''),
(2697, 13, 'Mortgage Loan Underwriter', '', ''),
(2698, 13, 'Mortgage Professional', '', ''),
(2699, 13, 'Mortgage Specialist', '', ''),
(2700, 13, 'Realty Specialist', '', ''),
(2701, 13, 'Real Estate Agent', '', ''),
(2702, 13, 'Real Estate Analyst', '', ''),
(2703, 13, 'Real Estate Appraiser', '', ''),
(2704, 13, 'Real Estate Attorney', '', ''),
(2705, 13, 'Real Estate Associate', '', ''),
(2706, 13, 'Real Estate Clerk', '', ''),
(2707, 13, 'Real Estate Consultant', '', ''),
(2708, 13, 'Real Estate Manager', '', ''),
(2709, 13, 'Real Estate Specialist', '', ''),
(2710, 13, 'Retail Loan Specialist', '', ''),
(2711, 13, 'Sales Assistant', '', ''),
(2712, 13, 'Title Coordinator', '', ''),
(2713, 13, 'Title Examiner', '', ''),
(2714, 13, 'Underwriter', '', ''),
(2715, 13, 'Real Estate Job Titles', '', ''),
(2716, 14, 'Account Executive', '', ''),
(2717, 14, 'Account Manager', '', ''),
(2718, 14, 'Accountant', '', ''),
(2719, 14, 'Administrative Assistant', '', ''),
(2720, 14, 'Administrative Medical Assistant', '', ''),
(2721, 14, 'Administrator', '', ''),
(2722, 14, 'Admissions Director', '', ''),
(2723, 14, 'Analyst', '', ''),
(2724, 14, 'Anesthesiologist', '', ''),
(2725, 14, 'Assistant', '', ''),
(2726, 14, 'Bereavement Coordinator', '', ''),
(2727, 14, 'Billing Manager', '', ''),
(2728, 14, 'Billing Specialist', '', ''),
(2729, 14, 'Biologist', '', ''),
(2730, 14, 'Biomedical Technician', '', ''),
(2731, 14, 'Business Analyst', '', ''),
(2732, 14, 'Case Manager', '', ''),
(2733, 14, 'Certified Medical Assistant', '', ''),
(2734, 14, 'Certified Nurse Assistant', '', ''),
(2735, 14, 'Certified Nursing Assistant', '', ''),
(2736, 14, 'Certified Pharmacy Technician', '', ''),
(2737, 14, 'Charge Nurse', '', ''),
(2738, 14, 'Chief Financial Officer', '', ''),
(2739, 14, 'Claims Examiner', '', ''),
(2740, 14, 'Clerk', '', ''),
(2741, 14, 'Clinical Research Associate', '', ''),
(2742, 14, 'Clinical Research Coordinator', '', ''),
(2743, 14, 'Clinical Specialist', '', ''),
(2744, 14, 'Coder', '', ''),
(2745, 14, 'Coding Educator', '', ''),
(2746, 14, 'Consultant', '', ''),
(2747, 14, 'Coordinator', '', ''),
(2748, 14, 'Counselor', '', ''),
(2749, 14, 'Customer Service Rep', '', ''),
(2750, 14, 'Customer Service Representative', '', ''),
(2751, 14, 'Dental Hygienist', '', ''),
(2752, 14, 'Dentist', '', ''),
(2753, 14, 'Dietitian', '', ''),
(2754, 14, 'Director of Nursing', '', ''),
(2755, 14, 'Director of Operations', '', ''),
(2756, 14, 'Director of Rehabilitation', '', ''),
(2757, 14, 'Doctor', '', ''),
(2758, 14, 'Emergency Medical Technician', '', ''),
(2759, 14, 'Executive Assistant', '', ''),
(2760, 14, 'Executive Director', '', ''),
(2761, 14, 'Financial Analyst', '', ''),
(2762, 14, 'Front Office Help', '', ''),
(2763, 14, 'Health Educator', '', ''),
(2764, 14, 'Healthcare Administrator', '', ''),
(2765, 14, 'Healthcare Management', '', ''),
(2766, 14, 'Healthcare or medical', '', ''),
(2767, 14, 'Home Health Aide', '', ''),
(2768, 14, 'Hospice Administrator', '', ''),
(2769, 14, 'Licensed Practical Nurse', '', ''),
(2770, 14, 'Massage Therapist', '', ''),
(2771, 14, 'Medical Administrative', '', ''),
(2772, 14, 'Medical Assistant', '', ''),
(2773, 14, 'Medical Assistant or phlebotomist', '', ''),
(2774, 14, 'Medical Assistant or receptionist', '', ''),
(2775, 14, 'Medical Biller', '', ''),
(2776, 14, 'Medical Billing Specialist', '', ''),
(2777, 14, 'Medical Claims and Billing Specialist', '', ''),
(2778, 14, 'Medical Coder', '', ''),
(2779, 14, 'Medical Office Assistant', '', ''),
(2780, 14, 'Medical Office Manager', '', ''),
(2781, 14, 'Medical Office Specialist', '', ''),
(2782, 14, 'Medical or Health Services Manager', '', ''),
(2783, 14, 'Medical Receptionist', '', ''),
(2784, 14, 'Medical Records Clerk', '', ''),
(2785, 14, 'Medical Sales', '', ''),
(2786, 14, 'Medical Secretary', '', ''),
(2787, 14, 'Medical Technician', '', ''),
(2788, 14, 'Medical Technologist', '', ''),
(2789, 14, 'Medical Transcriptionist', '', ''),
(2790, 14, 'Medical Transcriptionist', '', ''),
(2791, 14, 'Microbiologist', '', ''),
(2792, 14, 'Nurse', '', ''),
(2793, 14, 'Nurse Practitioner', '', ''),
(2794, 14, 'Nursing Home Administrator', '', ''),
(2795, 14, 'Nutritionist', '', ''),
(2796, 14, 'Occupational Therapist', '', ''),
(2797, 14, 'Office Assistant', '', ''),
(2798, 14, 'Office Manager', '', ''),
(2799, 14, 'Operations Manager', '', ''),
(2800, 14, 'Orderly Attendant', '', ''),
(2801, 14, 'Paramedic', '', ''),
(2802, 14, 'Patient Care Associate', '', ''),
(2803, 14, 'Patient Services Technician', '', ''),
(2804, 14, 'Patient Services Representative', '', ''),
(2805, 14, 'Pharmaceutical Sales', '', ''),
(2806, 14, 'Pharmaceutical Sales Rep', '', ''),
(2807, 14, 'Pharmaceutical Sales Representative', '', ''),
(2808, 14, 'Pharmacist', '', ''),
(2809, 14, 'Pharmacy Technician', '', ''),
(2810, 14, 'Phlebotomist', '', ''),
(2811, 14, 'Physical Therapist', '', ''),
(2812, 14, 'Physician', '', ''),
(2813, 14, 'Program Director', '', ''),
(2814, 14, 'Program Manager', '', ''),
(2815, 14, 'Programmer', '', ''),
(2816, 14, 'Programmer Analyst', '', ''),
(2817, 14, 'Programmer or analyst', '', ''),
(2818, 14, 'Project Management', '', ''),
(2819, 14, 'Project Manager', '', ''),
(2820, 14, 'Psychiatric Aide', '', ''),
(2821, 14, 'Quality Coordinator', '', ''),
(2822, 14, 'Registered Nurse', '', ''),
(2823, 14, 'Receptionist', '', ''),
(2824, 14, 'Recruiter', '', ''),
(2825, 14, 'Regional Sales Manager', '', ''),
(2826, 14, 'Registered Medical Assistant', '', ''),
(2827, 14, 'Research Assistant', '', ''),
(2828, 14, 'Research Associate', '', ''),
(2829, 14, 'Sales Associate', '', ''),
(2830, 14, 'Sales Manager', '', ''),
(2831, 14, 'Sales Rep', '', ''),
(2832, 14, 'Sales Representative', '', ''),
(2833, 14, 'Secretary', '', ''),
(2834, 14, 'Senior Programmer Analyst', '', ''),
(2835, 14, 'Social Services', '', ''),
(2836, 14, 'Software Developer', '', ''),
(2837, 14, 'Software Engineer', '', ''),
(2838, 14, 'Staffing Coordinator', '', ''),
(2839, 14, 'Supervisor', '', ''),
(2840, 14, 'Supervisor or manager', '', ''),
(2841, 14, 'Supply Technician', '', ''),
(2842, 14, 'Surgical Technologist', '', ''),
(2843, 14, 'Therapist', '', ''),
(2844, 14, 'Transcription', '', ''),
(2845, 14, 'Transcriptionist', '', ''),
(2846, 14, 'Ultrasonographer', '', ''),
(2847, 14, 'Vice President', '', ''),
(2848, 14, 'Health Care / Medical Job Titles', '', ''),
(2849, 15, 'Account Executive', '', ''),
(2850, 15, 'Account Manager', '', ''),
(2851, 15, 'Actuarial Analyst', '', ''),
(2852, 15, 'Actuarial Associate', '', ''),
(2853, 15, 'Actuarial Manager', '', ''),
(2854, 15, 'Adjuster', '', ''),
(2855, 15, 'Administrative Assistant', '', ''),
(2856, 15, 'Analyst', '', ''),
(2857, 15, 'Appraiser', '', ''),
(2858, 15, 'Auditor', '', ''),
(2859, 15, 'Bookkeeper', '', ''),
(2860, 15, 'Broker', '', ''),
(2861, 15, 'Business Analyst', '', ''),
(2862, 15, 'Claims Adjuster', '', ''),
(2863, 15, 'Claims Analyst', '', ''),
(2864, 15, 'Claims Examiner', '', ''),
(2865, 15, 'Claims Manager', '', ''),
(2866, 15, 'Claims Representative', '', ''),
(2867, 15, 'Claims Specialist', '', ''),
(2868, 15, 'Clerk', '', ''),
(2869, 15, 'Consultant', '', ''),
(2870, 15, 'Customer Service Associate', '', ''),
(2871, 15, 'Customer Service Manager', '', ''),
(2872, 15, 'Director', '', ''),
(2873, 15, 'Division Manager', '', ''),
(2874, 15, 'Estimator', '', ''),
(2875, 15, 'Field Adjuster', '', ''),
(2876, 15, 'Field Promotion Coordinator', '', ''),
(2877, 15, 'Investigator', '', ''),
(2878, 15, 'Insurance Adjuster', '', ''),
(2879, 15, 'Insurance Agent', '', ''),
(2880, 15, 'Loss Control Consultant/Specialist', '', ''),
(2881, 15, 'Manager of Customer Billing', '', ''),
(2882, 15, 'Marketing Manager', '', ''),
(2883, 15, 'Office Manager', '', ''),
(2884, 15, 'Project Manager', '', ''),
(2885, 15, 'Risk Manager', '', ''),
(2886, 15, 'Sales Agency Manager', '', ''),
(2887, 15, 'Sales Agent', '', ''),
(2888, 15, 'State Sales Manager', '', ''),
(2889, 15, 'Training Manager', '', ''),
(2890, 15, 'Underwriter', '', ''),
(2891, 15, 'Underwriting Manager', '', ''),
(2892, 15, 'Insurance Job Titles', '', ''),
(2893, 16, 'Applications Engineer', '', ''),
(2894, 16, 'Chief Technology Officer', '', ''),
(2895, 16, 'Chief Information Officer', '', ''),
(2896, 16, 'Computer and Information Systems Manager', '', ''),
(2897, 16, 'Database Administrator', '', ''),
(2898, 16, 'Help Desk Technician', '', ''),
(2899, 16, 'Information Technology Director', '', ''),
(2900, 16, 'Information Technology Manager', '', ''),
(2901, 16, 'Management Information Systems Director', '', ''),
(2902, 16, 'Network Architect', '', ''),
(2903, 16, 'Network Engineer', '', ''),
(2904, 16, 'Network System Administrator', '', ''),
(2905, 16, 'Programmer', '', ''),
(2906, 16, 'Programmer Analyst', '', ''),
(2907, 16, 'Security Specialist', '', ''),
(2908, 16, 'Senior Applications Engineer', '', ''),
(2909, 16, 'Senior Database Administrator', '', ''),
(2910, 16, 'Senior Network Architect', '', ''),
(2911, 16, 'Senior Network Engineer', '', ''),
(2912, 16, 'Senior Network System Administrator', '', ''),
(2913, 16, 'Senior Programmer', '', ''),
(2914, 16, 'Senior Programmer Analyst', '', ''),
(2915, 16, 'Senior Security Specialist', '', ''),
(2916, 16, 'Senior Software Engineer', '', ''),
(2917, 16, 'Senior Support Specialist', '', ''),
(2918, 16, 'Senior System Administrator', '', ''),
(2919, 16, 'Senior System Analyst', '', ''),
(2920, 16, 'Senior System Architect', '', ''),
(2921, 16, 'Senior System Designer', '', ''),
(2922, 16, 'Senior Systems Analyst', '', ''),
(2923, 16, 'Senior Systems Software Engineer', '', ''),
(2924, 16, 'Senior Web Administrator', '', ''),
(2925, 16, 'Senior Web Developer', '', ''),
(2926, 16, 'Software Engineer', '', ''),
(2927, 16, 'Software Quality Assurance Analyst', '', ''),
(2928, 16, 'Support Specialist', '', ''),
(2929, 16, 'System Administrator', '', ''),
(2930, 16, 'System Analyst', '', ''),
(2931, 16, 'System Architect', '', ''),
(2932, 16, 'System Designer', '', ''),
(2933, 16, 'Systems Analyst', '', ''),
(2934, 16, 'Systems Software Engineer', '', ''),
(2935, 16, 'Technical Specialist', '', ''),
(2936, 16, 'Telecommunications Specialist', '', ''),
(2937, 16, 'Web Administrator', '', ''),
(2938, 16, 'Web Developer', '', ''),
(2939, 16, 'Webmaster', '', ''),
(2940, 17, 'Administrative Assistant', '', ''),
(2941, 17, 'Arbitrator', '', ''),
(2942, 17, 'Attorney', '', ''),
(2943, 17, 'Case Manager', '', ''),
(2944, 17, 'Clerk', '', ''),
(2945, 17, 'Conciliator', '', ''),
(2946, 17, 'Conflict Resolution Specialist', '', ''),
(2947, 17, 'Consultant', '', ''),
(2948, 17, 'Contract Administrator', '', ''),
(2949, 17, 'Contract Analyst', '', ''),
(2950, 17, 'Contract Drafting Legal Specialist', '', ''),
(2951, 17, 'Copy Center Professional', '', ''),
(2952, 17, 'Counselor', '', ''),
(2953, 17, 'Corrections Officer', '', ''),
(2954, 17, 'Court Advocate', '', ''),
(2955, 17, 'Court Messenger', '', ''),
(2956, 17, 'Court Reporter', '', ''),
(2957, 17, 'Court Representative', '', ''),
(2958, 17, 'Court Transcriptionist', '', ''),
(2959, 17, 'Document Coder', '', ''),
(2960, 17, 'File Clerk', '', ''),
(2961, 17, 'Judge', '', ''),
(2962, 17, 'Jury Consultant', '', ''),
(2963, 17, 'Law Firm Administrator', '', ''),