/*
    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<OPTION  VALUE="&quot;Accounting / Finance&quot;">Acc');
    document.write('ounting / Finance</option><OPTION  VALUE="&quot;Administration&quot;">Admi');
    document.write('nistration</option><OPTION  VALUE="&quot;Business Consulting&quot;">Busine');
    document.write('ss Consulting</option><OPTION  VALUE="&quot;Commercial Management&quot;">C');
    document.write('ommercial Management</option><OPTION  VALUE="&quot;Customer Service&quot;"');
    document.write('>Customer Service</option><OPTION  VALUE="&quot;General Management&quot;">');
    document.write('General Management</option><OPTION  VALUE="&quot;Human Resources&quot;">Hu');
    document.write('man Resources</option><OPTION  VALUE="&quot;Industrial&quot;">Industrial</');
    document.write('option><OPTION  VALUE="&quot;Information Technology&quot;">IT</option><OP');
    document.write('TION  VALUE="&quot;Manufacturing&quot;">Manufacturing</option><OPTION  VAL');
    document.write('UE="&quot;Manufacturing (Mgnt only)&quot;">Manufacturing (Mgnt only)</optio');
    document.write('n><OPTION  VALUE="&quot;Marketing&quot;">Marketing</option><OPTION  VALUE');
    document.write('="&quot;Product Design&quot;">Product Design</option><OPTION  VALUE="&quot');
    document.write(';Product Management&quot;">Product Management</option><OPTION  VALUE="&quo');
    document.write('t;Quality Assurance&quot;">Quality Assurance</option><OPTION  VALUE="&quot');
    document.write(';Retail&quot;">Retail</option><OPTION  VALUE="&quot;Sales / Key Account Ma');
    document.write('nagers&quot;">Sales / Account Managers</option><OPTION  VALUE="&quot;Suppl');
    document.write('y Chain / Logistics&quot;">Supply Chain / Logistics</option><OPTION  VALUE');
    document.write('="&quot;Trades and Services&quot;">Trades and Services</option>');
    //end editable zone
    //----------------------
    
    document.write('</SELECT>');
    document.write('</div>');

}