/*jslint nomen:false, debug:true, evil:true, vars:false, browser:true, forin:true, undef:false, white:false */
/**
 * Includes a Form with javascript
 * @param {Object} formId
 * @param {Object} initialHeight
 * @param {Object} iframeCode
 */
function FrameBuilder (formId, appendTo, initialHeight, iframeCode){
    this.formId = formId;
    this.initialHeight = initialHeight;
    this.iframeCode = iframeCode;
    this.frame = null;
    this.timeInterval= 200;
    this.appendTo = appendTo || false;
    
    // initialize function for object
    this.init = function(){
        this.createFrame();
        this.addFrameContent(this.iframeCode);
    };
    
    // Create the frame
    this.createFrame = function(){
        var htmlCode = "<"+"iframe src=\"\" allowtransparency=\"true\" frameborder=\"0\" name=\""+this.formId+"\" id=\""+this.formId+"\" style=\"width:100%; height:"+this.initialHeight+"px; border:none;\" scrolling=\"no\"></if"+"rame>";
        if(this.appendTo === false){
            document.write(htmlCode);
        }else{
            var tmp = document.createElement('div');
            tmp.innerHTML = htmlCode;
            var a = this.appendTo;
            document.getElementById(a).appendChild(tmp.firstChild);            
        }
        // also get the frame for future use.
        this.frame = document.getElementById(this.formId);
        // set the time on the on load event of the frame
        this.addEvent(this.frame, 'load', this.bindMethod(this.setTimer, this));
    };
    
    // add event function for different browsers
    this.addEvent = function( obj, type, fn ) {
        if ( obj.attachEvent ) {
            obj["e"+type+fn] = fn;
            obj[type+fn] = function() { obj["e"+type+fn]( window.event ); };
            obj.attachEvent( "on"+type, obj[type+fn] );
        }
        else{
            obj.addEventListener( type, fn, false );   
        }
    };
    
    this.addFrameContent = function (string){
        string = string.replace(new RegExp('src\\=\\"[^"]*captcha.php\"><\/scr'+'ipt>', 'gim'), 'src="http://api.recaptcha.net/js/recaptcha_ajax.js"></scr'+'ipt><'+'div id="recaptcha_div"><'+'/div>'+
                '<'+'style>#recaptcha_logo{ display:none;} #recaptcha_tagline{display:none;} #recaptcha_table{border:none !important;} .recaptchatable .recaptcha_image_cell, #recaptcha_table{ background-color:transparent !important; } <'+'/style>'+
                '<'+'script defer="defer"> window.onload = function(){ Recaptcha.create("6Ld9UAgAAAAAAMon8zjt30tEZiGQZ4IIuWXLt1ky", "recaptcha_div", {theme: "clean",tabindex: 0,callback: function (){'+
                'if (document.getElementById("uword")) { document.getElementById("uword").parentNode.removeChild(document.getElementById("uword")); } if (window["validate"] !== undefined) { if (document.getElementById("recaptcha_response_field")){ document.getElementById("recaptcha_response_field").onblur = function(){ validate(document.getElementById("recaptcha_response_field"), "Required"); } } } if (document.getElementById("recaptcha_response_field")){ document.getElementsByName("recaptcha_challenge_field")[0].setAttribute("name", "anum"); } if (document.getElementById("recaptcha_response_field")){ document.getElementsByName("recaptcha_response_field")[0].setAttribute("name", "qCap"); }}})'+
                ' }<'+'/script>');
        string = string.replace(/(type="text\/javascript">)\s+(validate\(\"[^"]*"\);)/, '$1 jTime = setInterval(function(){if("validate" in window){$2clearTimeout(jTime);}}, 1000);');
        var frameDocument = (this.frame.contentWindow) ? this.frame.contentWindow : (this.frame.contentDocument.document) ? this.frame.contentDocument.document : this.frame.contentDocument;
        frameDocument.document.open();
        frameDocument.document.write(string);
        setTimeout( function(){
            frameDocument.document.close();
            try{
                if('JotFormFrameLoaded' in window){
                    JotFormFrameLoaded();
                }
            }catch(e){}
        },200);
    };
    
    this.setTimer = function(){
        var self = this;
        this.interval = setTimeout(function(){self.changeHeight();},this.timeInterval);
    };
    
    this.changeHeight = function (){
        var actualHeight = this.getBodyHeight();
        var currentHeight = this.getViewPortHeight();
        if(actualHeight === undefined){
            this.frame.style.height = "100%";
            if(!this.frame.style.minHeight){
                this.frame.style.minHeight = "300px";
            }
        }else if  (Math.abs(actualHeight - currentHeight) > 18){
            this.frame.style.height = (actualHeight)+"px";
        }
        this.setTimer();
    };
    
    this.bindMethod = function(method, scope) {
        return function() {
            method.apply(scope,arguments);
        };
    };
    
    this.getBodyHeight = function (){
        var height;
        var scrollHeight;
        var offsetHeight;
        try{  // Prevent IE from throw errors
            if (this.frame.contentWindow.document.height){
                
                height = this.frame.contentWindow.document.height;
                //Emre: to prevent "iframe height"  problem (61059)
                if (this.frame.contentWindow.document.body.scrollHeight){
                    height = scrollHeight = this.frame.contentWindow.document.body.scrollHeight;
                }
                
                if (this.frame.contentWindow.document.body.offsetHeight){
                    height = offsetHeight = this.frame.contentWindow.document.body.offsetHeight;
                }
                
            } else if (this.frame.contentWindow.document.body){
                
                if (this.frame.contentWindow.document.body.scrollHeight){
                    height = scrollHeight = this.frame.contentWindow.document.body.scrollHeight;
                }
                
                if (this.frame.contentWindow.document.body.offsetHeight){
                    height = offsetHeight = this.frame.contentWindow.document.body.offsetHeight;
                }
                
                if (scrollHeight && offsetHeight){
                    height = Math.max(scrollHeight, offsetHeight);
                }
            }            
        }catch(e){ }
        return height;
    };
    
    this.getViewPortHeight = function(){
        var height = 0;
        try{ // Prevent IE from throw errors
            if (this.frame.contentWindow.window.innerHeight)
            {
                height = this.frame.contentWindow.window.innerHeight - 18;
            }
            else if ((this.frame.contentWindow.document.documentElement) &&
                     (this.frame.contentWindow.document.documentElement.clientHeight))
            {
                height = this.frame.contentWindow.document.documentElement.clientHeight;
            }
            else if ((this.frame.contentWindow.document.body) &&
                     (this.frame.contentWindow.document.body.clientHeight))
            {
                height = this.frame.contentWindow.document.body.clientHeight;
            }            
        }catch(e){ }
        return height;
    };
    
    this.init();
}
FrameBuilder.get = [];
var i1083354237 = new FrameBuilder("1083354237", false, "", "<!DOCTYPE HTML PUBLIC \"-\/\/W3C\/\/DTD HTML 4.01\/\/EN\" \"http:\/\/www.w3.org\/TR\/html4\/strict.dtd\">\n<html><head>\n<meta http-equiv=\"Content-Type\" content=\"text\/html; charset=utf-8\" \/>\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0\" \/>\n<meta name=\"HandheldFriendly\" content=\"true\" \/>\n<title>Form<\/title>\n<link href=\"http:\/\/max.jotfor.ms\/min\/g=formCss?3.0.2435\" rel=\"stylesheet\" type=\"text\/css\" \/>\n<style type=\"text\/css\">\n    .form-label{\n        width:150px !important;\n    }\n    .form-label-left{\n        width:150px !important;\n    }\n    .form-line{\n        padding:10px;\n    }\n    .form-label-right{\n        width:150px !important;\n    }\n    body, html{\n        margin:0;\n        padding:0;\n        background:white;\n    }\n\n    .form-all{\n        margin:0px auto;\n        padding-top:0px;\n        width:690px;\n        background:white;\n        color:black !important;\n        font-family:Verdana;\n        font-size:12px;\n    }\n<\/style>\n\n<script src=\"http:\/\/max.jotfor.ms\/min\/g=jotform?3.0.2435\" type=\"text\/javascript\"><\/script>\n<script type=\"text\/javascript\">\n var jsTime = setInterval(function(){try{\n   JotForm.jsForm = true;\n\n   JotForm.init(function(){\n      JotForm.description('input_116', 'Please Note! Not a family member or friend.');\n      JotForm.description('input_121', 'If unknown use: unknown@nova.com');\n      JotForm.description('input_126', 'Please note! Not a family member or friend.');\n      JotForm.description('input_131', 'If unknown use: unknown@nova.com');\n      JotForm.description('input_135', 'Please note! Not a family member or friend.');\n      JotForm.description('input_140', 'If unknown use: unknown@nova.com');\n   });\n\n   clearInterval(jsTime);\n }catch(e){}}, 1000);\n<\/script>\n<\/head>\n<body>\n<form class=\"jotform-form\" action=\"http:\/\/submit.jotform.com\/submit.php\" method=\"post\" enctype=\"multipart\/form-data\" name=\"form_1083354237\" id=\"1083354237\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"1083354237\" \/>\n  <div class=\"form-all\">\n    <ul class=\"form-section\">\n      <li id=\"cid_163\" class=\"form-input-wide\">\n        <div class=\"form-header-group\">\n          <h2 id=\"header_163\" class=\"form-header\">\n            Application Form\n          <\/h2>\n          <div id=\"subHeader_163\" class=\"form-subHeader\">\n            Please refer to guidance notes when completing application form. Please make sure that you read the Home Office Circular. There are required fields in this form. Submit at the end.\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_161\">\n      <li id=\"cid_161\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_161\"><span class=\"form-collapse-mid\" id=\"collapse-text_161\">1 Vacancy Details<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_9\">\n        <label class=\"form-label-left\" id=\"label_9\" for=\"input_9\">\n          Job(s) Applied For:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_9\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_9\" name=\"q9_jobsApplied\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_10\">\n        <label class=\"form-label-left\" id=\"label_10\" for=\"input_10\"> Ref No: <\/label>\n        <div id=\"cid_10\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_10\" name=\"q10_refNo\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_151\">\n      <li id=\"cid_151\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_151\"><span class=\"form-collapse-mid\" id=\"collapse-text_151\">2 Present or most recent employment, voluntary work or role<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_12\">\n        <label class=\"form-label-left\" id=\"label_12\" for=\"input_12\">\n          Job Title:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_12\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_12\" name=\"q12_jobTitle\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_13\">\n        <label class=\"form-label-left\" id=\"label_13\" for=\"input_13\">\n          Name of Employer:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_13\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_13\" name=\"q13_nameOf\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_14\">\n        <label class=\"form-label-left\" id=\"label_14\" for=\"input_14\">\n          Employer\u2019s Address:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_14\" class=\"form-input\">\n          <textarea id=\"input_14\" class=\"form-textarea validate[required]\" name=\"q14_employersAddress\" cols=\"30\" rows=\"5\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_15\">\n        <label class=\"form-label-left\" id=\"label_15\" for=\"input_15\">\n          Postcode:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_15\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_15\" name=\"q15_postcode\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_16\">\n        <label class=\"form-label-left\" id=\"label_16\" for=\"input_16\"> Hours worked: <\/label>\n        <div id=\"cid_16\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_16\" name=\"q16_hoursWorked\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_17\">\n        <label class=\"form-label-left\" id=\"label_17\" for=\"input_17\">\n          Dates employed:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_17\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_17\" name=\"q17_datesEmployed\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_18\">\n        <label class=\"form-label-left\" id=\"label_18\" for=\"input_18\">\n          Notice period:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_18\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_18\" name=\"q18_noticePeriod\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_19\">\n        <label class=\"form-label-left\" id=\"label_19\" for=\"input_19\"> Current salary plus benefits: <\/label>\n        <div id=\"cid_19\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_19\" name=\"q19_currentSalary\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_20\">\n        <label class=\"form-label-left\" id=\"label_20\" for=\"input_20\"> Key duties: <\/label>\n        <div id=\"cid_20\" class=\"form-input\">\n          <textarea id=\"input_20\" class=\"form-textarea\" name=\"q20_keyDuties20\" cols=\"30\" rows=\"6\"><\/textarea>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_150\">\n      <li id=\"cid_150\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_150\"><span class=\"form-collapse-mid\" id=\"collapse-text_150\">3 Reason for wishing to leave or left:<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_22\">\n        <label class=\"form-label-left\" id=\"label_22\" for=\"input_22\"> Reason: <\/label>\n        <div id=\"cid_22\" class=\"form-input\">\n          <textarea id=\"input_22\" class=\"form-textarea\" name=\"q22_reason\" cols=\"30\" rows=\"4\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_23\">\n        <label class=\"form-label-left\" id=\"label_23\" for=\"input_23\">\n          The Working Time Regulations place a maximum limit on weekly hours worked (48 hours). Will you continue in any other employment, should you be offered this appointment?:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_23\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_23_0\" name=\"q23_theWorking23\" value=\"Yes\" \/>\n              <label for=\"input_23_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_23_1\" name=\"q23_theWorking23\" value=\"No\" \/>\n              <label for=\"input_23_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_149\">\n      <li id=\"cid_149\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_149\"><span class=\"form-collapse-mid\" id=\"collapse-text_149\">4 Previous Employment<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_25\">\n        <div id=\"cid_25\" class=\"form-input-wide\">\n          <div id=\"text_25\" class=\"form-html\">\n            Starting with the most recent first, please give details of jobs held including part time and unpaid work. Do not include the details provided in Section 2 of the application form. Attach a separate sheet if necessary.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_26\">\n        <label class=\"form-label-left\" id=\"label_26\" for=\"input_26\"> Name of employer: <\/label>\n        <div id=\"cid_26\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_26\" name=\"q26_nameOf26\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_27\">\n        <label class=\"form-label-left\" id=\"label_27\" for=\"input_27\"> Job title and main duties: <\/label>\n        <div id=\"cid_27\" class=\"form-input\">\n          <textarea id=\"input_27\" class=\"form-textarea\" name=\"q27_jobTitle27\" cols=\"30\" rows=\"5\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_28\">\n        <label class=\"form-label-left\" id=\"label_28\" for=\"input_28\"> Reason for leaving and length of employment: <\/label>\n        <div id=\"cid_28\" class=\"form-input\">\n          <textarea id=\"input_28\" class=\"form-textarea\" name=\"q28_reasonFor\" cols=\"30\" rows=\"3\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_29\">\n        <label class=\"form-label-left\" id=\"label_29\" for=\"input_29\"> Name of employer: <\/label>\n        <div id=\"cid_29\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_29\" name=\"q29_nameOf29\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_30\">\n        <label class=\"form-label-left\" id=\"label_30\" for=\"input_30\"> Job title and main duties: <\/label>\n        <div id=\"cid_30\" class=\"form-input\">\n          <textarea id=\"input_30\" class=\"form-textarea\" name=\"q30_jobTitle30\" cols=\"30\" rows=\"5\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_31\">\n        <label class=\"form-label-left\" id=\"label_31\" for=\"input_31\"> Reason for leaving and length of employment: <\/label>\n        <div id=\"cid_31\" class=\"form-input\">\n          <textarea id=\"input_31\" class=\"form-textarea\" name=\"q31_reasonFor31\" cols=\"30\" rows=\"3\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_32\">\n        <label class=\"form-label-left\" id=\"label_32\" for=\"input_32\"> Name of employer: <\/label>\n        <div id=\"cid_32\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_32\" name=\"q32_nameOf32\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_33\">\n        <label class=\"form-label-left\" id=\"label_33\" for=\"input_33\"> Job title and main duties: <\/label>\n        <div id=\"cid_33\" class=\"form-input\">\n          <textarea id=\"input_33\" class=\"form-textarea\" name=\"q33_jobTitle33\" cols=\"30\" rows=\"5\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_34\">\n        <label class=\"form-label-left\" id=\"label_34\" for=\"input_34\"> Reason for leaving and length of employment: <\/label>\n        <div id=\"cid_34\" class=\"form-input\">\n          <textarea id=\"input_34\" class=\"form-textarea\" name=\"q34_reasonFor34\" cols=\"30\" rows=\"3\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_35\">\n        <label class=\"form-label-left\" id=\"label_35\" for=\"input_35\"> Attach extra details: <\/label>\n        <div id=\"cid_35\" class=\"form-input\">\n          <input class=\"form-upload\" type=\"file\" id=\"input_35\" name=\"q35_attachExtra\" file-accept=\"doc, xls, jpg, jpeg, gif, png, mp3, mpeg\" file-maxsize=\"500\" \/>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_152\">\n      <li id=\"cid_152\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_152\"><span class=\"form-collapse-mid\" id=\"collapse-text_152\">5 Education<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_37\">\n        <div id=\"cid_37\" class=\"form-input-wide\">\n          <div id=\"text_37\" class=\"form-html\">\n            Please give details of any educational, technical and\/or professional qualifications. If you are currently studying please provide details of the qualifications you are studying for.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_38\">\n        <label class=\"form-label-left\" id=\"label_38\" for=\"input_38\"> Examinations\/qualifications taken or to be taken. Results and grades (include subjects) <\/label>\n        <div id=\"cid_38\" class=\"form-input\">\n          <textarea id=\"input_38\" class=\"form-textarea\" name=\"q38_examinationsqualificationsTaken38\" cols=\"35\" rows=\"10\"><\/textarea>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_153\">\n      <li id=\"cid_153\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_153\"><span class=\"form-collapse-mid\" id=\"collapse-text_153\">6 Training<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_41\">\n        <label class=\"form-label-left\" id=\"label_41\" for=\"input_41\"> Course title: <\/label>\n        <div id=\"cid_41\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_41\" name=\"q41_courseTitle\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_42\">\n        <label class=\"form-label-left\" id=\"label_42\" for=\"input_42\"> Organising body: <\/label>\n        <div id=\"cid_42\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_42\" name=\"q42_organisingBody\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_43\">\n        <label class=\"form-label-left\" id=\"label_43\" for=\"input_43\"> Length of course: <\/label>\n        <div id=\"cid_43\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_43\" name=\"q43_lengthOf\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_44\">\n        <label class=\"form-label-left\" id=\"label_44\" for=\"input_44\"> Course title: <\/label>\n        <div id=\"cid_44\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_44\" name=\"q44_courseTitle44\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_40\">\n        <label class=\"form-label-left\" id=\"label_40\" for=\"input_40\"> Length of course: <\/label>\n        <div id=\"cid_40\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_40\" name=\"q40_lengthOf40\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_45\">\n        <label class=\"form-label-left\" id=\"label_45\" for=\"input_45\"> Organising body: <\/label>\n        <div id=\"cid_45\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_45\" name=\"q45_organisingBody45\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_46\">\n        <label class=\"form-label-left\" id=\"label_46\" for=\"input_46\"> Course title: <\/label>\n        <div id=\"cid_46\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_46\" name=\"q46_courseTitle46\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_47\">\n        <label class=\"form-label-left\" id=\"label_47\" for=\"input_47\"> Organising body: <\/label>\n        <div id=\"cid_47\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_47\" name=\"q47_organisingBody47\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_48\">\n        <label class=\"form-label-left\" id=\"label_48\" for=\"input_48\"> Length of course: <\/label>\n        <div id=\"cid_48\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_48\" name=\"q48_lengthOf48\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_154\">\n      <li id=\"cid_154\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_154\"><span class=\"form-collapse-mid\" id=\"collapse-text_154\">7 Membership<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_51\">\n        <label class=\"form-label-left\" id=\"label_51\" for=\"input_51\"> Name of Organisation (1): <\/label>\n        <div id=\"cid_51\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_51\" name=\"q51_nameOf51\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_52\">\n        <label class=\"form-label-left\" id=\"label_52\" for=\"input_52\"> Type of membership: <\/label>\n        <div id=\"cid_52\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_52\" name=\"q52_typeOf\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_49\">\n        <label class=\"form-label-left\" id=\"label_49\" for=\"input_49\"> Is membership current?: <\/label>\n        <div id=\"cid_49\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_49_0\" name=\"q49_isMembership\" value=\"Yes\" \/>\n              <label for=\"input_49_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_49_1\" name=\"q49_isMembership\" value=\"No\" \/>\n              <label for=\"input_49_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_53\">\n        <label class=\"form-label-left\" id=\"label_53\" for=\"input_53\"> Name of Organisation (2): <\/label>\n        <div id=\"cid_53\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_53\" name=\"q53_nameOf53\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_54\">\n        <label class=\"form-label-left\" id=\"label_54\" for=\"input_54\"> Type of membership: <\/label>\n        <div id=\"cid_54\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_54\" name=\"q54_typeOf54\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_55\">\n        <label class=\"form-label-left\" id=\"label_55\" for=\"input_55\"> Is membership current?: <\/label>\n        <div id=\"cid_55\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_55_0\" name=\"q55_isMembership55\" value=\"Yes\" \/>\n              <label for=\"input_55_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_55_1\" name=\"q55_isMembership55\" value=\"No\" \/>\n              <label for=\"input_55_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_155\">\n      <li id=\"cid_155\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_155\"><span class=\"form-collapse-mid\" id=\"collapse-text_155\">8 Skills, Ablilities, Experience and Achievements<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_57\">\n        <div id=\"cid_57\" class=\"form-input-wide\">\n          <div id=\"text_57\" class=\"form-html\">\n            Please give details of your skills, abilities, achievements and experience (including outside interests) and use examples to demonstrate how you meet each of the criteria listed in the person specification. You may attach extra details if necessary.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_58\">\n        <label class=\"form-label-left\" id=\"label_58\" for=\"input_58\"> Skills Details: <\/label>\n        <div id=\"cid_58\" class=\"form-input\">\n          <textarea id=\"input_58\" class=\"form-textarea\" name=\"q58_skillsDetails\" cols=\"50\" rows=\"30\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_59\">\n        <label class=\"form-label-left\" id=\"label_59\" for=\"input_59\"> Attach extra details: <\/label>\n        <div id=\"cid_59\" class=\"form-input\">\n          <input class=\"form-upload\" type=\"file\" id=\"input_59\" name=\"q59_attachExtra59\" file-accept=\"doc, xls, jpg, jpeg, gif, png, mp3, mpeg\" file-maxsize=\"500\" \/>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_156\">\n      <li id=\"cid_156\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_156\"><span class=\"form-collapse-mid\" id=\"collapse-text_156\">9 Personal Details<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_61\">\n        <label class=\"form-label-left\" id=\"label_61\" for=\"input_61\">\n          Surname:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_61\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_61\" name=\"q61_surname\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_62\">\n        <label class=\"form-label-left\" id=\"label_62\" for=\"input_62\">\n          Forename (s):<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_62\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_62\" name=\"q62_forenames\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_63\">\n        <label class=\"form-label-left\" id=\"label_63\" for=\"input_63\">\n          Title (select):<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_63\" class=\"form-input\">\n          <select class=\"form-dropdown validate[required]\" style=\"width:150px\" id=\"input_63\" name=\"q63_titleselect\">\n            <option>  <\/option>\n            <option value=\"Mr\"> Mr <\/option>\n            <option value=\"Mrs\"> Mrs <\/option>\n            <option value=\"Miss\"> Miss <\/option>\n            <option value=\"Ms\"> Ms <\/option>\n            <option value=\"Other\"> Other <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_64\">\n        <label class=\"form-label-left\" id=\"label_64\" for=\"input_64\"> Other: <\/label>\n        <div id=\"cid_64\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_64\" name=\"q64_other\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_65\">\n        <label class=\"form-label-left\" id=\"label_65\" for=\"input_65\">\n          Date of Birth:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_65\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_65\" name=\"q65_dateOf\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_66\">\n        <label class=\"form-label-left\" id=\"label_66\" for=\"input_66\">\n          Address:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_66\" class=\"form-input\">\n          <textarea id=\"input_66\" class=\"form-textarea validate[required]\" name=\"q66_address\" cols=\"30\" rows=\"6\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_67\">\n        <label class=\"form-label-left\" id=\"label_67\" for=\"input_67\">\n          Post Code:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_67\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_67\" name=\"q67_postCode\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_68\">\n        <label class=\"form-label-left\" id=\"label_68\" for=\"input_68\">\n          Is this a job share application:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_68\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_68_0\" name=\"q68_isThis\" value=\"Yes\" \/>\n              <label for=\"input_68_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_68_1\" name=\"q68_isThis\" value=\"No\" \/>\n              <label for=\"input_68_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_69\">\n        <div id=\"cid_69\" class=\"form-input-wide\">\n          <div id=\"text_69\" class=\"form-html\">\n            Contact details\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_70\">\n        <label class=\"form-label-left\" id=\"label_70\" for=\"input_70\"> Home: <\/label>\n        <div id=\"cid_70\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_70\" name=\"q70_home\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_71\">\n        <label class=\"form-label-left\" id=\"label_71\" for=\"input_71\"> Work: <\/label>\n        <div id=\"cid_71\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_71\" name=\"q71_work\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_72\">\n        <label class=\"form-label-left\" id=\"label_72\" for=\"input_72\"> Mobile: <\/label>\n        <div id=\"cid_72\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_72\" name=\"q72_mobile\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_73\">\n        <label class=\"form-label-left\" id=\"label_73\" for=\"input_73\"> Email: <\/label>\n        <div id=\"cid_73\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[Email]\" id=\"input_73\" name=\"q73_email\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_74\">\n        <label class=\"form-label-left\" id=\"label_74\" for=\"input_74\">\n          Preferred contact detail:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_74\" class=\"form-input\">\n          <select class=\"form-dropdown validate[required]\" style=\"width:150px\" id=\"input_74\" name=\"q74_preferredContact\">\n            <option>  <\/option>\n            <option value=\"Home\"> Home <\/option>\n            <option value=\"Work\"> Work <\/option>\n            <option value=\"Mobile\"> Mobile <\/option>\n            <option value=\"Email\"> Email <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_75\">\n        <label class=\"form-label-left\" id=\"label_75\" for=\"input_75\">\n          Are you eligible to work in the UK?:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_75\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_75_0\" name=\"q75_areYou75\" value=\"Yes\" \/>\n              <label for=\"input_75_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_75_1\" name=\"q75_areYou75\" value=\"No\" \/>\n              <label for=\"input_75_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_76\">\n        <label class=\"form-label-left\" id=\"label_76\" for=\"input_76\">\n          Are you required to have a work permit to work in the UK?:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_76\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_76_0\" name=\"q76_areYou76\" value=\"Yes\" \/>\n              <label for=\"input_76_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_76_1\" name=\"q76_areYou76\" value=\"No\" \/>\n              <label for=\"input_76_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_77\">\n        <div id=\"cid_77\" class=\"form-input-wide\">\n          <div id=\"text_77\" class=\"form-html\">\n            Convictions\/Disqualifications\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_78\">\n        <label class=\"form-label-left\" id=\"label_78\" for=\"input_78\"> Please give details and dates of a) any convictions (including driving offences) and\/or b) disqualifications from driving or performance of professional duties: <\/label>\n        <div id=\"cid_78\" class=\"form-input\">\n          <textarea id=\"input_78\" class=\"form-textarea\" name=\"q78_pleaseGive78\" cols=\"30\" rows=\"4\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_79\">\n        <div id=\"cid_79\" class=\"form-input-wide\">\n          <div id=\"text_79\" class=\"form-html\">\n            Canvassing\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_80\">\n        <label class=\"form-label-left\" id=\"label_80\" for=\"input_80\">\n          In order to ensure fairness and openness of our selection process please state whether you are related to, or in a close personal relationship with a Councillor or employee of Swindon Borough Council:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_80\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_80_0\" name=\"q80_inOrder\" value=\"Yes\" \/>\n              <label for=\"input_80_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_80_1\" name=\"q80_inOrder\" value=\"No\" \/>\n              <label for=\"input_80_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_81\">\n        <label class=\"form-label-left\" id=\"label_81\" for=\"input_81\"> If yes, please give details: <\/label>\n        <div id=\"cid_81\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_81\" name=\"q81_ifYes\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_82\">\n        <label class=\"form-label-left\" id=\"label_82\" for=\"input_82\"> Name: <\/label>\n        <div id=\"cid_82\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_82\" name=\"q82_name\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_83\">\n        <label class=\"form-label-left\" id=\"label_83\" for=\"input_83\"> Position in Council: <\/label>\n        <div id=\"cid_83\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_83\" name=\"q83_positionIn\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_84\">\n        <label class=\"form-label-left\" id=\"label_84\" for=\"input_84\"> Relationship with yourself: <\/label>\n        <div id=\"cid_84\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_84\" name=\"q84_relationshipWith\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_85\">\n        <div id=\"cid_85\" class=\"form-input-wide\">\n          <div id=\"text_85\" class=\"form-html\">\n            Please note that canvassing of Councillors or employees of Swindon Borough Council in relation to this application will disqualify any applicant. If evidence of this is discovered after appointment you may be dismissed without notice.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_86\">\n        <div id=\"cid_86\" class=\"form-input-wide\">\n          <div id=\"text_86\" class=\"form-html\">\n            I declare that the information I have given in this application is correct and complete. I understand that any false statements or failure to disclose information requested on this form may result in my application being disqualified or may lead to my dismissal or disciplinary action if appointed.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_87\">\n        <label class=\"form-label-left\" id=\"label_87\" for=\"input_87\">\n          Declaration:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_87\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_87_0\" name=\"q87_declaration\" value=\"Yes\" \/>\n              <label for=\"input_87_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_87_1\" name=\"q87_declaration\" value=\"No\" \/>\n              <label for=\"input_87_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_88\">\n        <div id=\"cid_88\" class=\"form-input-wide\">\n          <div id=\"text_88\" class=\"form-html\">\n            Data Protection. All information on this form will be treated in strictest confidence and used to process your application for employment. If you are appointed, this application will form the basis of your personal file and information on this form may be held on computer. If your application is unsuccessful your details will be kept for a period of 1 year and will then be destroyed.\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_157\">\n      <li id=\"cid_157\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_157\"><span class=\"form-collapse-mid\" id=\"collapse-text_157\">10 Equal Opportunities Monitoring Form<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_90\">\n        <div id=\"cid_90\" class=\"form-input-wide\">\n          <div id=\"text_90\" class=\"form-html\">\n            You are requested to complete this information to enable us to monitor the effectiveness of our Corporate Equalities Strategy. This information will be used solely for monitoring purposes, will be treated as confidential and will be separated from the application form on receipt and before selection procedures commence.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_91\">\n        <div id=\"cid_91\" class=\"form-input-wide\">\n          <div id=\"text_91\" class=\"form-html\">\n            Please select applicable options\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_92\">\n        <label class=\"form-label-left\" id=\"label_92\" for=\"input_92\">\n          Are you?:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_92\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_92_0\" name=\"q92_areYou92\" value=\"Male\" \/>\n              <label for=\"input_92_0\"> Male <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_92_1\" name=\"q92_areYou92\" value=\"Female\" \/>\n              <label for=\"input_92_1\"> Female <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_93\">\n        <label class=\"form-label-left\" id=\"label_93\" for=\"input_93\">\n          Please indicate your current age band:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_93\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_93_0\" name=\"q93_pleaseIndicate\" value=\"Up to 19\" \/>\n              <label for=\"input_93_0\"> Up to 19 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_93_1\" name=\"q93_pleaseIndicate\" value=\"20-29\" \/>\n              <label for=\"input_93_1\"> 20-29 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_93_2\" name=\"q93_pleaseIndicate\" value=\"30-39\" \/>\n              <label for=\"input_93_2\"> 30-39 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_93_3\" name=\"q93_pleaseIndicate\" value=\"40-49\" \/>\n              <label for=\"input_93_3\"> 40-49 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_93_4\" name=\"q93_pleaseIndicate\" value=\"50-59\" \/>\n              <label for=\"input_93_4\"> 50-59 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_93_5\" name=\"q93_pleaseIndicate\" value=\"60-69\" \/>\n              <label for=\"input_93_5\"> 60-69 <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_93_6\" name=\"q93_pleaseIndicate\" value=\"Over 70\" \/>\n              <label for=\"input_93_6\"> Over 70 <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_94\">\n        <div id=\"cid_94\" class=\"form-input-wide\">\n          <div id=\"text_94\" class=\"form-html\">\n            How would you describe your ethnic origin?\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_95\">\n        <label class=\"form-label-left\" id=\"label_95\" for=\"input_95\"> White: <\/label>\n        <div id=\"cid_95\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_95_0\" name=\"q95_white\" value=\"British\" \/>\n              <label for=\"input_95_0\"> British <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_95_1\" name=\"q95_white\" value=\"Irish\" \/>\n              <label for=\"input_95_1\"> Irish <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_95_2\" name=\"q95_white\" value=\"Polish\" \/>\n              <label for=\"input_95_2\"> Polish <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_95_3\" name=\"q95_white\" value=\"Italian\" \/>\n              <label for=\"input_95_3\"> Italian <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_95_4\" name=\"q95_white\" value=\"Any other White background\" \/>\n              <label for=\"input_95_4\"> Any other White background <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_96\">\n        <label class=\"form-label-left\" id=\"label_96\" for=\"input_96\"> Black or Black British: <\/label>\n        <div id=\"cid_96\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_96_0\" name=\"q96_blackOr\" value=\"Caribbean\" \/>\n              <label for=\"input_96_0\"> Caribbean <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_96_1\" name=\"q96_blackOr\" value=\"African\" \/>\n              <label for=\"input_96_1\"> African <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_96_2\" name=\"q96_blackOr\" value=\"Any other Black background\" \/>\n              <label for=\"input_96_2\"> Any other Black background <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_98\">\n        <label class=\"form-label-left\" id=\"label_98\" for=\"input_98\"> Mixed: <\/label>\n        <div id=\"cid_98\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_98_0\" name=\"q98_mixed[]\" value=\"White and Black Caribbean\" \/>\n              <label for=\"input_98_0\"> White and Black Caribbean <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_98_1\" name=\"q98_mixed[]\" value=\"White and Black African\" \/>\n              <label for=\"input_98_1\"> White and Black African <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_98_2\" name=\"q98_mixed[]\" value=\"White and Asian\" \/>\n              <label for=\"input_98_2\"> White and Asian <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_98_3\" name=\"q98_mixed[]\" value=\"Any other Mixed Background\" \/>\n              <label for=\"input_98_3\"> Any other Mixed Background <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_99\">\n        <label class=\"form-label-left\" id=\"label_99\" for=\"input_99\"> Asian or Asian British: <\/label>\n        <div id=\"cid_99\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_99_0\" name=\"q99_asianOr\" value=\"Indian\" \/>\n              <label for=\"input_99_0\"> Indian <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_99_1\" name=\"q99_asianOr\" value=\"Pakistani\" \/>\n              <label for=\"input_99_1\"> Pakistani <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_99_2\" name=\"q99_asianOr\" value=\"Bangladeshi\" \/>\n              <label for=\"input_99_2\"> Bangladeshi <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_99_3\" name=\"q99_asianOr\" value=\"Any other Asian background\" \/>\n              <label for=\"input_99_3\"> Any other Asian background <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_100\">\n        <label class=\"form-label-left\" id=\"label_100\" for=\"input_100\"> Chinese or other Ethnic Group: <\/label>\n        <div id=\"cid_100\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_100_0\" name=\"q100_chineseOr\" value=\"Chinese\" \/>\n              <label for=\"input_100_0\"> Chinese <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_100_1\" name=\"q100_chineseOr\" value=\"Any other ethinic group\" \/>\n              <label for=\"input_100_1\"> Any other ethinic group <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_101\">\n        <label class=\"form-label-left\" id=\"label_101\" for=\"input_101\">\n          Do you consider yourself to have a disability?:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_101\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_101_0\" name=\"q101_doYou\" value=\"Yes\" \/>\n              <label for=\"input_101_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_101_1\" name=\"q101_doYou\" value=\"No\" \/>\n              <label for=\"input_101_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_102\">\n        <label class=\"form-label-left\" id=\"label_102\" for=\"input_102\"> If yes, please tick the appropriate boxes: <\/label>\n        <div id=\"cid_102\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_102_0\" name=\"q102_ifYes102[]\" value=\"Dyslexia\" \/>\n              <label for=\"input_102_0\"> Dyslexia <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_102_1\" name=\"q102_ifYes102[]\" value=\"Deaf\/Hearing Impaired\" \/>\n              <label for=\"input_102_1\"> Deaf\/Hearing Impaired <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_102_2\" name=\"q102_ifYes102[]\" value=\"Wheelchair User\/Mobility Impairment\" \/>\n              <label for=\"input_102_2\"> Wheelchair User\/Mobility Impairment <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_102_3\" name=\"q102_ifYes102[]\" value=\"Blind\/Partially Sighted\" \/>\n              <label for=\"input_102_3\"> Blind\/Partially Sighted <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_102_4\" name=\"q102_ifYes102[]\" value=\"Mental Health Difficulties\" \/>\n              <label for=\"input_102_4\"> Mental Health Difficulties <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-checkbox-item\" style=\"clear:left;\"><input type=\"checkbox\" class=\"form-checkbox\" id=\"input_102_5\" name=\"q102_ifYes102[]\" value=\"Unseen e.g. Diabetes\" \/>\n              <label for=\"input_102_5\"> Unseen e.g. Diabetes <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_103\">\n        <label class=\"form-label-left\" id=\"label_103\" for=\"input_103\">\n          Where did you see this vacancy advertised?:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_103\" class=\"form-input\">\n          <select class=\"form-dropdown validate[required]\" style=\"width:150px\" id=\"input_103\" name=\"q103_whereDid\">\n            <option>  <\/option>\n            <option value=\"Local Newspaper\"> Local Newspaper <\/option>\n            <option value=\"National Newspaper \"> National Newspaper <\/option>\n            <option value=\"Professional Journal            \"> Professional Journal <\/option>\n            <option value=\"Job Centre\"> Job Centre <\/option>\n            <option value=\"Internet              \"> Internet <\/option>\n            <option value=\"Other\"> Other <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_104\">\n        <label class=\"form-label-left\" id=\"label_104\" for=\"input_104\"> If Internet state website\/or state other: <\/label>\n        <div id=\"cid_104\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_104\" name=\"q104_ifInternet\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_105\">\n        <label class=\"form-label-left\" id=\"label_105\" for=\"input_105\">\n          Are you currently employed by Swindon Borough Council?:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_105\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_105_0\" name=\"q105_areYou105\" value=\"Yes\" \/>\n              <label for=\"input_105_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_105_1\" name=\"q105_areYou105\" value=\"No\" \/>\n              <label for=\"input_105_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_106\">\n        <div id=\"cid_106\" class=\"form-input-wide\">\n          <div id=\"text_106\" class=\"form-html\">\n            If you wish, you may disclose information about yourself in this section about your:\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_107\">\n        <label class=\"form-label-left\" id=\"label_107\" for=\"input_107\"> Religion: <\/label>\n        <div id=\"cid_107\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_107\" name=\"q107_religion\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_108\">\n        <label class=\"form-label-left\" id=\"label_108\" for=\"input_108\"> Sexual orientation: <\/label>\n        <div id=\"cid_108\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_108\" name=\"q108_sexualOrientation\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_158\">\n      <li id=\"cid_158\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_158\"><span class=\"form-collapse-mid\" id=\"collapse-text_158\">11 Disability<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_110\">\n        <div id=\"cid_110\" class=\"form-input-wide\">\n          <div id=\"text_110\" class=\"form-html\">\n            We guarantee to interview disabled applicants who meet the essential requirements for the post.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_111\">\n        <label class=\"form-label-left\" id=\"label_111\" for=\"input_111\">\n          Do you consider yourself to have a disability?:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_111\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_111_0\" name=\"q111_doYou111\" value=\"Yes\" \/>\n              <label for=\"input_111_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_111_1\" name=\"q111_doYou111\" value=\"No\" \/>\n              <label for=\"input_111_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_112\">\n        <label class=\"form-label-left\" id=\"label_112\" for=\"input_112\"> Please state any particular assistance or facilities you may require in attending an interview: <\/label>\n        <div id=\"cid_112\" class=\"form-input\">\n          <textarea id=\"input_112\" class=\"form-textarea\" name=\"q112_pleaseState\" cols=\"30\" rows=\"2\"><\/textarea>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_159\">\n      <li id=\"cid_159\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_159\"><span class=\"form-collapse-mid\" id=\"collapse-text_159\">12 References<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_114\">\n        <div id=\"cid_114\" class=\"form-input-wide\">\n          <div id=\"text_114\" class=\"form-html\">\n            Please give details of 3 referees who are able and willing to comment on your suitability for the job, one of whom must be your present or most recent employer. If you have just left full time education you should give details of your course tutor or teacher. References from friends or relatives are not acceptable.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_115\">\n        <div id=\"cid_115\" class=\"form-input-wide\">\n          <div id=\"text_115\" class=\"form-html\">\n            Ref 1\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_116\">\n        <label class=\"form-label-left\" id=\"label_116\" for=\"input_116\">\n          Name:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_116\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_116\" name=\"q116_name116\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_117\">\n        <label class=\"form-label-left\" id=\"label_117\" for=\"input_117\"> Position\/Occupation: <\/label>\n        <div id=\"cid_117\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_117\" name=\"q117_positionoccupation\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_118\">\n        <label class=\"form-label-left\" id=\"label_118\" for=\"input_118\"> Address: <\/label>\n        <div id=\"cid_118\" class=\"form-input\">\n          <textarea id=\"input_118\" class=\"form-textarea\" name=\"q118_address118\" cols=\"30\" rows=\"5\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_119\">\n        <label class=\"form-label-left\" id=\"label_119\" for=\"input_119\"> Telephone Number: <\/label>\n        <div id=\"cid_119\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_119\" name=\"q119_telephoneNumber\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_120\">\n        <label class=\"form-label-left\" id=\"label_120\" for=\"input_120\"> Fax Number: <\/label>\n        <div id=\"cid_120\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_120\" name=\"q120_faxNumber\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_121\">\n        <label class=\"form-label-left\" id=\"label_121\" for=\"input_121\">\n          Email:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_121\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required, Email]\" id=\"input_121\" name=\"q121_email121\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_122\">\n        <label class=\"form-label-left\" id=\"label_122\" for=\"input_122\"> Relationship to yourself: <\/label>\n        <div id=\"cid_122\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_122\" name=\"q122_relationshipTo\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_123\">\n        <label class=\"form-label-left\" id=\"label_123\" for=\"input_123\">\n          May we contact referee prior to interview?:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_123\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_123_0\" name=\"q123_mayWe\" value=\"Yes\" \/>\n              <label for=\"input_123_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_123_1\" name=\"q123_mayWe\" value=\"No\" \/>\n              <label for=\"input_123_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_124\">\n        <div id=\"cid_124\" class=\"form-input-wide\">\n          <div id=\"text_124\" class=\"form-html\">\n            Ref 2\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_126\">\n        <label class=\"form-label-left\" id=\"label_126\" for=\"input_126\">\n          Name:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_126\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_126\" name=\"q126_name126\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_127\">\n        <label class=\"form-label-left\" id=\"label_127\" for=\"input_127\"> Position\/Occupation: <\/label>\n        <div id=\"cid_127\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_127\" name=\"q127_positionoccupation127\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_128\">\n        <label class=\"form-label-left\" id=\"label_128\" for=\"input_128\"> Address: <\/label>\n        <div id=\"cid_128\" class=\"form-input\">\n          <textarea id=\"input_128\" class=\"form-textarea\" name=\"q128_address128\" cols=\"30\" rows=\"5\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_129\">\n        <label class=\"form-label-left\" id=\"label_129\" for=\"input_129\"> Telephone Number: <\/label>\n        <div id=\"cid_129\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_129\" name=\"q129_telephoneNumber129\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_130\">\n        <label class=\"form-label-left\" id=\"label_130\" for=\"input_130\"> Fax Number: <\/label>\n        <div id=\"cid_130\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_130\" name=\"q130_faxNumber130\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_131\">\n        <label class=\"form-label-left\" id=\"label_131\" for=\"input_131\">\n          Email:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_131\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required, Email]\" id=\"input_131\" name=\"q131_email131\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_132\">\n        <label class=\"form-label-left\" id=\"label_132\" for=\"input_132\"> Relationship to yourself: <\/label>\n        <div id=\"cid_132\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_132\" name=\"q132_relationshipTo132\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_133\">\n        <label class=\"form-label-left\" id=\"label_133\" for=\"input_133\">\n          May we contact referee prior to interview?:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_133\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_133_0\" name=\"q133_mayWe133\" value=\"Yes\" \/>\n              <label for=\"input_133_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_133_1\" name=\"q133_mayWe133\" value=\"No\" \/>\n              <label for=\"input_133_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_134\">\n        <div id=\"cid_134\" class=\"form-input-wide\">\n          <div id=\"text_134\" class=\"form-html\">\n            Ref 3\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_135\">\n        <label class=\"form-label-left\" id=\"label_135\" for=\"input_135\">\n          Name:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_135\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required]\" id=\"input_135\" name=\"q135_name135\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_136\">\n        <label class=\"form-label-left\" id=\"label_136\" for=\"input_136\"> Position\/Occupation: <\/label>\n        <div id=\"cid_136\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_136\" name=\"q136_positionoccupation136\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_137\">\n        <label class=\"form-label-left\" id=\"label_137\" for=\"input_137\"> Address: <\/label>\n        <div id=\"cid_137\" class=\"form-input\">\n          <textarea id=\"input_137\" class=\"form-textarea\" name=\"q137_address137\" cols=\"30\" rows=\"5\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_138\">\n        <label class=\"form-label-left\" id=\"label_138\" for=\"input_138\"> Telephone Number: <\/label>\n        <div id=\"cid_138\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_138\" name=\"q138_telephoneNumber138\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_139\">\n        <label class=\"form-label-left\" id=\"label_139\" for=\"input_139\"> Fax Number: <\/label>\n        <div id=\"cid_139\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_139\" name=\"q139_faxNumber139\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_140\">\n        <label class=\"form-label-left\" id=\"label_140\" for=\"input_140\">\n          Email:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_140\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox validate[required, Email]\" id=\"input_140\" name=\"q140_email140\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_141\">\n        <label class=\"form-label-left\" id=\"label_141\" for=\"input_141\"> Relationship to yourself: <\/label>\n        <div id=\"cid_141\" class=\"form-input\">\n          <input type=\"text\" class=\"form-textbox\" id=\"input_141\" name=\"q141_relationshipTo141\" size=\"20\" maxlength=\"100\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_142\">\n        <label class=\"form-label-left\" id=\"label_142\" for=\"input_142\">\n          May we contact referee prior to interview?:<span class=\"form-required\">*<\/span>\n        <\/label>\n        <div id=\"cid_142\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_142_0\" name=\"q142_mayWe142\" value=\"Yes\" \/>\n              <label for=\"input_142_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_142_1\" name=\"q142_mayWe142\" value=\"No\" \/>\n              <label for=\"input_142_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_160\">\n      <li id=\"cid_160\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_160\"><span class=\"form-collapse-mid\" id=\"collapse-text_160\">13 Driving Qualifications<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_144\">\n        <div id=\"cid_144\" class=\"form-input-wide\">\n          <div id=\"text_144\" class=\"form-html\">\n            You should only complete this page when driving is required for the post. The person specification will confirm if driving is needed to carry out the duties for the post e.g. Refuse Driver. For other posts driving may not be an essential requirement to carry out the duties and alternative methods of transport could be used e.g. public transport, cycling, walking etc.\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_145\">\n        <label class=\"form-label-left\" id=\"label_145\" for=\"input_145\"> Do you hold a current driving licence?: <\/label>\n        <div id=\"cid_145\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_145_0\" name=\"q145_doYou145\" value=\"No\" \/>\n              <label for=\"input_145_0\"> No <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_145_1\" name=\"q145_doYou145\" value=\"Provisional\" \/>\n              <label for=\"input_145_1\"> Provisional <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_145_2\" name=\"q145_doYou145\" value=\"Full\" \/>\n              <label for=\"input_145_2\"> Full <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_146\">\n        <label class=\"form-label-left\" id=\"label_146\" for=\"input_146\"> Please state categories of licence held: <\/label>\n        <div id=\"cid_146\" class=\"form-input\">\n          <textarea id=\"input_146\" class=\"form-textarea\" name=\"q146_pleaseState146\" cols=\"30\" rows=\"2\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_147\">\n        <label class=\"form-label-left\" id=\"label_147\" for=\"input_147\"> Do you have any driving endorsements?: <\/label>\n        <div id=\"cid_147\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_147_0\" name=\"q147_doYou147\" value=\"Yes\" \/>\n              <label for=\"input_147_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_147_1\" name=\"q147_doYou147\" value=\"No\" \/>\n              <label for=\"input_147_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_148\">\n        <label class=\"form-label-left\" id=\"label_148\" for=\"input_148\"> Do you have regular access to a vehicle?: <\/label>\n        <div id=\"cid_148\" class=\"form-input\">\n          <div class=\"form-single-column\"><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_148_0\" name=\"q148_doYou148\" value=\"Yes\" \/>\n              <label for=\"input_148_0\"> Yes <\/label><\/span><span class=\"clearfix\"><\/span><span class=\"form-radio-item\" style=\"clear:left;\"><input type=\"radio\" class=\"form-radio\" id=\"input_148_1\" name=\"q148_doYou148\" value=\"No\" \/>\n              <label for=\"input_148_1\"> No <\/label><\/span><span class=\"clearfix\"><\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section-closed\" style=\"height: 60px;clear:both;\" id=\"section_162\">\n      <li id=\"cid_162\" class=\"form-input-wide\">\n        <div class=\"form-collapse-table\" id=\"collapse_162\"><span class=\"form-collapse-mid\" id=\"collapse-text_162\">Process Application<\/span><span class=\"form-collapse-right form-collapse-right-hide\">&nbsp;<\/span>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" id=\"id_97\">\n        <div id=\"cid_97\" class=\"form-input-wide\">\n          <div style=\"margin-left:156px\" class=\"form-buttons-wrapper\">\n            <button id=\"input_97\" type=\"submit\" class=\"form-submit-button\">\n              Submit\n            <\/button>\n            &nbsp;\n            <button id=\"input_reset_97\" type=\"reset\" class=\"form-submit-reset\">\n              Clear Form\n            <\/button>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li style=\"display:none\">\n        Should be Empty:\n        <input type=\"text\" name=\"website\" value=\"\" \/>\n      <\/li>\n    <\/ul>\n  <\/div>\n  <input type=\"hidden\" id=\"simple_spc\" name=\"simple_spc\" value=\"1083354237\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"1083354237-1083354237\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n");

