/*
    MIRANDA Code
    ------------------
    M_categories.js - This file contains all the elements of the category drop down menu, in each search form.
    Please edit the code included in editable zone.
*/

function M_categories() {


    //----------------------
    //start editable zone
    document.write('<div class="rasp_element">Job Category:</div>');
    //end editable zone
    //----------------------

    document.write('<div class="rasp_element">');
    document.write('<SELECT class="category" name="in_industry">');
    
    //----------------------
    //start editable zone
	document.write('<OPTION  VALUE="">Any');
	document.write('<OPTION  VALUE="&quot;3333&quot;">Engineering, Estimating, Planning and Surveying');
	document.write('<OPTION  VALUE="&quot;Accounting and Finance&quot;">Accounting and Finance');
	document.write('<OPTION  VALUE="&quot;Administration&quot;">Administration');
	document.write('<OPTION  VALUE="&quot;Construction&quot;">Construction');
	document.write('<OPTION  VALUE="&quot;Drafting and Design&quot;">Drafting and Design');
	document.write('<OPTION  VALUE="&quot;Electrical&quot;">Electrical');
	document.write('<OPTION  VALUE="&quot;Estimating and Procurement&quot;">Estimating and Procurement');
	document.write('<OPTION  VALUE="&quot;Engineering&quot;">Engineering');
	document.write('<OPTION  VALUE="&quot;General Management&quot;">General Management');
	document.write('<OPTION  VALUE="&quot;HR&quot;">HR');
	document.write('<OPTION  VALUE="&quot;Information Technology&quot;">IT');
	document.write('<OPTION  VALUE="&quot;Legal&quot;">Legal');
	document.write('<OPTION  VALUE="&quot;Project Management&quot;">Project Management');
	document.write('<OPTION  VALUE="&quot;Sales and Marketing&quot;">Sales and Marketing');
	document.write('<OPTION  VALUE="&quot;OHS and Environment&quot;">OHS and Environment');
    //end editable zone
    //----------------------
    
    document.write('</SELECT>');
    document.write('</div>');

}