var qsProxy = {};
function FrameBuilder(formId,appendTo,initialHeight,iframeCode,title,embedStyleJSON,isSmartEmbedEnabled){this.formId=formId;this.initialHeight=initialHeight;this.iframeCode=iframeCode;this.frame=null;this.timeInterval=200;this.appendTo=appendTo||false;this.formSubmitted=0;this.frameMinWidth='100%';this.defaultHeight='';this.isSmartEmbedEnabled=isSmartEmbedEnabled===1;this.init=function(){this.embedURLHash=this.getMD5(window.location.href);if(embedStyleJSON&&(embedStyleJSON[this.embedURLHash]&&embedStyleJSON[this.embedURLHash]['inlineStyle']['embedWidth'])){this.frameMinWidth=embedStyleJSON[this.embedURLHash]['inlineStyle']['embedWidth']+'px';}
if(embedStyleJSON&&(embedStyleJSON[this.embedURLHash])){if(embedStyleJSON[this.embedURLHash]['inlineStyle']&&embedStyleJSON[this.embedURLHash]['inlineStyle']['embedHeight']){this.defaultHeight='data-frameHeight="'+embedStyleJSON[this.embedURLHash]['inlineStyle']['embedHeight']+'"';}}
this.createFrame();this.addFrameContent(this.iframeCode);};this.createFrame=function(){var tmp_is_ie=!!window.ActiveXObject;this.iframeDomId=document.getElementById(this.formId)?this.formId+'_'+new Date().getTime():this.formId;var htmlCode="<"+"iframe title=\""+title.replace(/[\\"']/g,'\\$&').replace(/&amp;/g,'&')+"\" src=\"\" allowtransparency=\"true\" allowfullscreen=\"true\" name=\""+this.formId+"\" id=\""+this.iframeDomId+"\" style=\"width: 10px; min-width:"+this.frameMinWidth+"; display: block; overflow: hidden; height:"+this.initialHeight+"px; border: none;\" scrolling=\"no\""+this.defaultHeight+"></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);}
this.frame=document.getElementById(this.iframeDomId);if(tmp_is_ie===true){try{var iframe=this.frame;var doc=iframe.contentDocument?iframe.contentDocument:(iframe.contentWindow.document||iframe.document);doc.open();doc.write("");}
catch(err){this.frame.src="javascript:void((function(){document.open();document.domain=\'"+this.getBaseDomain()+"\';document.close();})())";}}
this.addEvent(this.frame,'load',this.bindMethod(this.setTimer,this));var self=this;if(window.chrome!==undefined){this.frame.onload=function(){try{var doc=this.contentWindow.document;var _jotform=this.contentWindow.JotForm;if(doc!==undefined){var form=doc.getElementById(""+self.iframeDomId);self.addEvent(form,"submit",function(){if(_jotform.validateAll()){self.formSubmitted=1;}});}}catch(e){}}}};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){if(window.location.search&&window.location.search.indexOf('disableSmartEmbed')>-1){string=string.replace(new RegExp('smartEmbed=1(?:&amp;|&)'),'');string=string.replace(new RegExp('isSmartEmbed'),'');}else if(this.isSmartEmbedEnabled){var cssLink='stylebuilder/'+this.formId+'.css';var embedUrl='&amp;embedUrl='+window.location.href;var cssPlace=string.indexOf(cssLink);if(cssPlace>-1){var positionLastRequestElement=string.indexOf('\"/>',cssPlace);if(positionLastRequestElement>-1){string=string.substr(0,positionLastRequestElement)+embedUrl+string.substr(positionLastRequestElement);string=string.replace(cssLink,'stylebuilder/'+this.formId+'/'+this.embedURLHash+'.css');}}}
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);');if(string.match('#sublabel_litemode')){string=string.replace('class="form-all"','class="form-all" style="margin-top:0;"');}
var iframe=this.frame;var doc=iframe.contentDocument?iframe.contentDocument:(iframe.contentWindow.document||iframe.document);doc.open();doc.write(string);setTimeout(function(){doc.close();try{if('JotFormFrameLoaded'in window){JotFormFrameLoaded();}}catch(e){console.log("error on frame loading",e);}},200);};this.setTimer=function(){var self=this;this.interval=setTimeout(function(){self.changeHeight();},this.timeInterval);};this.getBaseDomain=function(){var thn=window.location.hostname;var cc=0;var buff="";for(var i=0;i<thn.length;i++){var chr=thn.charAt(i);if(chr=="."){cc++;}
if(cc==0){buff+=chr;}}
if(cc==2){thn=thn.replace(buff+".","");}
return thn;}
this.changeHeight=function(){var actualHeight=this.getBodyHeight();var currentHeight=this.getViewPortHeight();if(actualHeight===undefined){this.frame.style.height=this.frameHeight;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.frameHeight=0;this.getBodyHeight=function(){if(this.formSubmitted===1){return;}
var height;var scrollHeight;var offsetHeight;try{if(this.frame.contentWindow.document.height){height=this.frame.contentWindow.document.height;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){var isChrome=/Chrome/.test(navigator.userAgent)&&/Google Inc/.test(navigator.vendor);if(this.frame.contentWindow.document.body.scrollHeight){height=scrollHeight=this.frame.contentWindow.document.body.scrollHeight;}
if(isChrome){height=scrollHeight=this.frame.contentWindow.document.height;}
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){}
this.frameHeight=height;return height;};this.getViewPortHeight=function(){if(this.formSubmitted===1){return;}
var height=0;try{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.getMD5=function(s){function L(k,d){return(k<<d)|(k>>>(32-d))}function K(G,k){var I,d,F,H,x;F=(G&2147483648);H=(k&2147483648);I=(G&1073741824);d=(k&1073741824);x=(G&1073741823)+(k&1073741823);if(I&d){return(x^2147483648^F^H)}if(I|d){if(x&1073741824){return(x^3221225472^F^H)}else{return(x^1073741824^F^H)}}else{return(x^F^H)}}function r(d,F,k){return(d&F)|((~d)&k)}function q(d,F,k){return(d&k)|(F&(~k))}function p(d,F,k){return(d^F^k)}function n(d,F,k){return(F^(d|(~k)))}function u(G,F,aa,Z,k,H,I){G=K(G,K(K(r(F,aa,Z),k),I));return K(L(G,H),F)}function f(G,F,aa,Z,k,H,I){G=K(G,K(K(q(F,aa,Z),k),I));return K(L(G,H),F)}function D(G,F,aa,Z,k,H,I){G=K(G,K(K(p(F,aa,Z),k),I));return K(L(G,H),F)}function t(G,F,aa,Z,k,H,I){G=K(G,K(K(n(F,aa,Z),k),I));return K(L(G,H),F)}function e(G){var Z;var F=G.length;var x=F+8;var k=(x-(x%64))/64;var I=(k+1)*16;var aa=Array(I-1);var d=0;var H=0;while(H<F){Z=(H-(H%4))/4;d=(H%4)*8;aa[Z]=(aa[Z]|(G.charCodeAt(H)<<d));H++}Z=(H-(H%4))/4;d=(H%4)*8;aa[Z]=aa[Z]|(128<<d);aa[I-2]=F<<3;aa[I-1]=F>>>29;return aa}function B(x){var k="",F="",G,d;for(d=0;d<=3;d++){G=(x>>>(d*8))&255;F="0"+G.toString(16);k=k+F.substr(F.length-2,2)}return k}function J(k){k=k.replace(/rn/g,"n");var d="";for(var F=0;F<k.length;F++){var x=k.charCodeAt(F);if(x<128){d+=String.fromCharCode(x)}else{if((x>127)&&(x<2048)){d+=String.fromCharCode((x>>6)|192);d+=String.fromCharCode((x&63)|128)}else{d+=String.fromCharCode((x>>12)|224);d+=String.fromCharCode(((x>>6)&63)|128);d+=String.fromCharCode((x&63)|128)}}}return d}var C=Array();var P,h,E,v,g,Y,X,W,V;var S=7,Q=12,N=17,M=22;var A=5,z=9,y=14,w=20;var o=4,m=11,l=16,j=23;var U=6,T=10,R=15,O=21;s=J(s);C=e(s);Y=1732584193;X=4023233417;W=2562383102;V=271733878;for(P=0;P<C.length;P+=16){h=Y;E=X;v=W;g=V;Y=u(Y,X,W,V,C[P+0],S,3614090360);V=u(V,Y,X,W,C[P+1],Q,3905402710);W=u(W,V,Y,X,C[P+2],N,606105819);X=u(X,W,V,Y,C[P+3],M,3250441966);Y=u(Y,X,W,V,C[P+4],S,4118548399);V=u(V,Y,X,W,C[P+5],Q,1200080426);W=u(W,V,Y,X,C[P+6],N,2821735955);X=u(X,W,V,Y,C[P+7],M,4249261313);Y=u(Y,X,W,V,C[P+8],S,1770035416);V=u(V,Y,X,W,C[P+9],Q,2336552879);W=u(W,V,Y,X,C[P+10],N,4294925233);X=u(X,W,V,Y,C[P+11],M,2304563134);Y=u(Y,X,W,V,C[P+12],S,1804603682);V=u(V,Y,X,W,C[P+13],Q,4254626195);W=u(W,V,Y,X,C[P+14],N,2792965006);X=u(X,W,V,Y,C[P+15],M,1236535329);Y=f(Y,X,W,V,C[P+1],A,4129170786);V=f(V,Y,X,W,C[P+6],z,3225465664);W=f(W,V,Y,X,C[P+11],y,643717713);X=f(X,W,V,Y,C[P+0],w,3921069994);Y=f(Y,X,W,V,C[P+5],A,3593408605);V=f(V,Y,X,W,C[P+10],z,38016083);W=f(W,V,Y,X,C[P+15],y,3634488961);X=f(X,W,V,Y,C[P+4],w,3889429448);Y=f(Y,X,W,V,C[P+9],A,568446438);V=f(V,Y,X,W,C[P+14],z,3275163606);W=f(W,V,Y,X,C[P+3],y,4107603335);X=f(X,W,V,Y,C[P+8],w,1163531501);Y=f(Y,X,W,V,C[P+13],A,2850285829);V=f(V,Y,X,W,C[P+2],z,4243563512);W=f(W,V,Y,X,C[P+7],y,1735328473);X=f(X,W,V,Y,C[P+12],w,2368359562);Y=D(Y,X,W,V,C[P+5],o,4294588738);V=D(V,Y,X,W,C[P+8],m,2272392833);W=D(W,V,Y,X,C[P+11],l,1839030562);X=D(X,W,V,Y,C[P+14],j,4259657740);Y=D(Y,X,W,V,C[P+1],o,2763975236);V=D(V,Y,X,W,C[P+4],m,1272893353);W=D(W,V,Y,X,C[P+7],l,4139469664);X=D(X,W,V,Y,C[P+10],j,3200236656);Y=D(Y,X,W,V,C[P+13],o,681279174);V=D(V,Y,X,W,C[P+0],m,3936430074);W=D(W,V,Y,X,C[P+3],l,3572445317);X=D(X,W,V,Y,C[P+6],j,76029189);Y=D(Y,X,W,V,C[P+9],o,3654602809);V=D(V,Y,X,W,C[P+12],m,3873151461);W=D(W,V,Y,X,C[P+15],l,530742520);X=D(X,W,V,Y,C[P+2],j,3299628645);Y=t(Y,X,W,V,C[P+0],U,4096336452);V=t(V,Y,X,W,C[P+7],T,1126891415);W=t(W,V,Y,X,C[P+14],R,2878612391);X=t(X,W,V,Y,C[P+5],O,4237533241);Y=t(Y,X,W,V,C[P+12],U,1700485571);V=t(V,Y,X,W,C[P+3],T,2399980690);W=t(W,V,Y,X,C[P+10],R,4293915773);X=t(X,W,V,Y,C[P+1],O,2240044497);Y=t(Y,X,W,V,C[P+8],U,1873313359);V=t(V,Y,X,W,C[P+15],T,4264355552);W=t(W,V,Y,X,C[P+6],R,2734768916);X=t(X,W,V,Y,C[P+13],O,1309151649);Y=t(Y,X,W,V,C[P+4],U,4149444226);V=t(V,Y,X,W,C[P+11],T,3174756917);W=t(W,V,Y,X,C[P+2],R,718787259);X=t(X,W,V,Y,C[P+9],O,3951481745);Y=K(Y,h);X=K(X,E);W=K(W,v);V=K(V,g)}var i=B(Y)+B(X)+B(W)+B(V);return i.toLowerCase()};this.init();}
FrameBuilder.get=qsProxy||[];var i42432113192847=new FrameBuilder("42432113192847",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<link rel=\"alternate\" type=\"application\/json+oembed\" href=\"https:\/\/www.jotform.com\/oembed\/?format=json&amp;url=http%3A%2F%2Fwww.jotform.com%2Fform%2F42432113192847\" title=\"oEmbed Form\"><link rel=\"alternate\" type=\"text\/xml+oembed\" href=\"https:\/\/www.jotform.com\/oembed\/?format=xml&amp;url=http%3A%2F%2Fwww.jotform.com%2Fform%2F42432113192847\" title=\"oEmbed Form\">\n<meta property=\"og:title\" content=\"TurningPoint Immigration Assessment Form\" >\n<meta property=\"og:url\" content=\"http:\/\/www.jotform.co\/form\/42432113192847\" >\n<meta property=\"og:description\" content=\"Please click the link to complete this form.\">\n<link rel=\"shortcut icon\" href=\"https:\/\/cdn.jotfor.ms\/favicon.ico\">\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>TurningPoint Immigration Assessment Form<\/title>\n<link href=\"https:\/\/cdn.jotfor.ms\/static\/formCss.css?3.3.4626\" rel=\"stylesheet\" type=\"text\/css\" \/>\n<link type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/css\/styles\/solid.css?3.3.4626\" \/>\n<link type=\"text\/css\" media=\"print\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/css\/printForm.css?3.3.4626\" \/>\n<style type=\"text\/css\">\n    .form-label-left{\n        width:150px;\n    }\n    .form-line{\n        padding-top:2px;\n        padding-bottom:2px;\n    }\n    .form-label-right{\n        width:150px;\n    }\n    body, html{\n        margin:0;\n        padding:0;\n        background:#E9F0F2;\n    }\n\n    .form-all{\n        margin:0px auto;\n        padding-top:20px;\n        width:550px;\n        background: #E9F0F2;\n        color:#0F0E0E !important;\n        font-family:'Verdana';\n        font-size:13px;\n    }\n    .form-radio-item label, .form-checkbox-item label, .form-grading-label, .form-header{\n        color: #0F0E0E;\n    }\n\n<\/style>\n\n<link type=\"text\/css\" rel=\"stylesheet\" href=\"https:\/\/cdn.jotfor.ms\/css\/styles\/buttons\/form-submit-button-black_glass.css?3.3.4626\"\/>\n<script src=\"https:\/\/cdn.jotfor.ms\/js\/vendor\/imageinfo.js?v=3.3.4626\" type=\"text\/javascript\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/static\/prototype.forms.js\" type=\"text\/javascript\"><\/script>\n<script src=\"https:\/\/cdn.jotfor.ms\/static\/jotform.forms.js?3.3.4626\" 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      setTimeout(function() {\n          $('input_28').hint('ex: myname@example.com');\n       }, 20);\n      FormTranslation.init({\"detectUserLanguage\":\"1\",\"dictionary\":\"{\\\"zh\\\":{\\\"Full Name\\\":\\\"\\\",\\\"First Name\\\":\\\"\u540d\u5b57\\\",\\\"Last Name\\\":\\\"Sign Up \uff1d \u767b\u5165\\\",\\\"Birth Date\\\":\\\"\u51fa\u751f\u65e5\u671f\\\",\\\"Month\\\":\\\"\u6708\\\",\\\"Day\\\":\\\"\u65e5\u671f\\\",\\\"Year\\\":\\\"\u5e74\\\",\\\"January\\\":\\\"\u4e00\u6708\\\",\\\"February\\\":\\\"\u4e8c\u6708\\\",\\\"March\\\":\\\"\u4e09\u6708\\\",\\\"April\\\":\\\"\u56db\u6708\\\",\\\"May\\\":\\\"\u4e94\u6708\\\",\\\"June\\\":\\\"\u516d\u6708\\\",\\\"July\\\":\\\"\u4e03\u6708\\\",\\\"August\\\":\\\"\u516b\u6708\\\",\\\"September\\\":\\\"\u4e5d\u6708\\\",\\\"October\\\":\\\"\u5341\u6708\\\",\\\"November\\\":\\\"\u5341\u4e00\u6708\\\",\\\"December\\\":\\\"\u5341\u4e8c\u6708\\\",\\\"E-mail\\\":\\\"\u7535\u5b50\u90ae\u4ef6\\\",\\\"Area Code\\\":\\\"\u90f5\u905e\u5340\u865f\\\",\\\"Phone Number\\\":\\\"\u96fb\u8a71\u865f\u78bc\\\",\\\"Yes\\\":\\\"Yes!\\\",\\\"No\\\":\\\"\u4e0d\\\",\\\"Back\\\":\\\"\u8fd4\u56de\\\",\\\"Next\\\":\\\"\u4e0b\u4e00\u90e8\\\",\\\"None\\\":\\\"\u65e0\\\",\\\"Submit\\\":\\\"\u63d0\u4ea4\\\",\\\"This field can only contain letters\\\":\\\"\u7761\u5230\u53d1\u751f\u7684\u53d1\u751f\u7684\\\",\\\"This field can only contain letters and numbers.\\\":\\\"\u9019\u500b\u8868\u683c\u53ea\u80fd\u5bb9\u7d0d\u5b57\u6bcd\u8207\u6578\u5b57\\\",\\\"E-mail does not match\\\":\\\"E-mail \u4e26\u4e0d\u7b26\u5408\\\",\\\"Enter a valid e-mail address\\\":\\\"\u8f38\u5165\u4e00\u500b\u6709\u6548\u7684Email\u5730\u5740\\\",\\\"There are incomplete required fields. Please complete them.\\\":\\\"\u8607\\\",\\\"This field can only contain numeric values\\\":\\\"\u9019\u500b\u8868\u683c\u53ea\u80fd\u5bb9\u7d0d\u6578\u503c\\\",\\\"Please wait...\\\":\\\"\u8bf7\u7b49\u5f85...\\\",\\\"This field is required.\\\":\\\"\\\",\\\"You can only upload following files:\\\":\\\"\u60a8\u53ea\u80fd\u4e0a\u50b3\u4ee5\u4e0b\u6a94\u6848\uff1a\\\",\\\"File size cannot be bigger than:\\\":\\\"\u6a94\u6848\u5927\u5c0f\u4e0d\u80fd\u8d85\u904e\\\",\\\"Please Wait...\\\":\\\"\\\",\\\"text_47\\\":\\\"<p><\/p>\\\\n<p>\\\\n<\/p><p class=\\\\\\\"MsoNormal\\\\\\\" style=\\\\\\\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\\\\\\\"><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">OCCUPATION AND WORK EXPERIENCE<\/span><\/strong><\/p>\\\\n<p><\/p>\\\",\\\"text_52\\\":\\\"<p><\/p>\\\\n<p>\\\\n<\/p><p class=\\\\\\\"MsoNormal\\\\\\\" style=\\\\\\\"margin-bottom: .0001pt; line-height: normal;\\\\\\\"><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">NEW ZEALAND WORK EXPERIENCE<\/span><\/strong><\/p>\\\\n<p><\/p>\\\",\\\"text_55\\\":\\\"<p><\/p>\\\\n<p><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; line-height: 115%; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">PARTNER\u2019S DETAILS<\/span><\/strong><span style=\\\\\\\"font-size: 12.0pt; line-height: 115%; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\"> (if applicable)<\/span><\/p>\\\",\\\"text_65\\\":\\\"<p><\/p>\\\\n<p><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; line-height: 115%; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">SUBMISSION<\/span><\/strong><\/p>\\\",\\\"text_69\\\":\\\"<p><\/p>\\\\n<p><\/p>\\\\n<p>\\\\n<\/p><p class=\\\\\\\"MsoNormal\\\\\\\" style=\\\\\\\"margin-bottom: .0001pt; line-height: normal;\\\\\\\"><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">ADDITIONAL INFORMATION<\/span><\/strong><\/p>\\\\n<p class=\\\\\\\"MsoNormal\\\\\\\" style=\\\\\\\"margin-bottom: .0001pt; line-height: normal;\\\\\\\"><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">English Language Ability<\/span><\/strong><\/p>\\\\n<span style=\\\\\\\"font-size: 12.0pt; line-height: 115%; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">Unless English is your native language, you may be required to take an IELTS test<\/span><p><\/p>\\\",\\\"text_75\\\":\\\"<p><\/p>\\\\n<p>\\\\n<\/p><p class=\\\\\\\"MsoNormal\\\\\\\" style=\\\\\\\"margin-bottom: .0001pt; line-height: normal;\\\\\\\"><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">Health and Character<\/span><\/strong><\/p>\\\\n<p><\/p>\\\"},\\\"ru\\\":{\\\"Full Name\\\":\\\"\u041f\u043e\u043b\u043d\u043e\u0435 \u0418\u043c\u044f\\\",\\\"First Name\\\":\\\"\u0418\u043c\u044f\\\",\\\"Last Name\\\":\\\"\u0424\u0430\u043c\u0438\u043b\u0438\u044f\\\",\\\"Birth Date\\\":\\\"\u0414\u0430\u0442\u0430 \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f\\\",\\\"Month\\\":\\\"\u041c\u0435\u0441\u044f\u0446\\\",\\\"Day\\\":\\\"\u0414\u0435\u043d\u044c\\\",\\\"Year\\\":\\\"\u0413\u043e\u0434\\\",\\\"January\\\":\\\"\u042f\u043d\u0432\u0430\u0440\u044c\\\",\\\"February\\\":\\\"\u0424\u0435\u0432\u0440\u0430\u043b\u044c\\\",\\\"March\\\":\\\"\u041c\u0430\u0440\u0442\\\",\\\"April\\\":\\\"\u0410\u043f\u0440\u0435\u043b\u044c\\\",\\\"May\\\":\\\"\u041c\u0430\u0439\\\",\\\"June\\\":\\\"\u0418\u044e\u043d\u044c\\\",\\\"July\\\":\\\"\u0418\u044e\u043b\u044c\\\",\\\"August\\\":\\\"\u0410\u0432\u0433\u0443\u0441\u0442\\\",\\\"September\\\":\\\"\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c\\\",\\\"October\\\":\\\"\u041e\u043a\u0442\u044f\u0431\u0440\u044c\\\",\\\"November\\\":\\\"\u041d\u043e\u044f\u0431\u0440\u044c\\\",\\\"December\\\":\\\"\u0414\u0435\u043a\u0430\u0431\u0440\u044c\\\",\\\"E-mail\\\":\\\"E-mail\\\",\\\"Area Code\\\":\\\"\u041e\u0431\u043b\u0430\u0441\u0442\u044c \u043a\u043e\u0434\u0430\\\",\\\"Phone Number\\\":\\\"\u041d\u043e\u043c\u0435\u0440 \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u0430\\\",\\\"Yes\\\":\\\"\u0414\u0430 \\\",\\\"No\\\":\\\"\u041d\u0435\u0442\\\",\\\"Back\\\":\\\"\u041d\u0430\u0437\u0430\u0434\\\",\\\"Next\\\":\\\"\u0412\u043f\u0435\u0440\u0435\u0434\\\",\\\"None\\\":\\\"\u041d\u0438\u0447\u0435\u0433\u043e\\\",\\\"Submit\\\":\\\"\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c\\\",\\\"Clear Form\\\":\\\"\u041e\u0447\u0438\u0441\u0442\u043a\u0430 \u0424\u043e\u0440\u043c\u044b\\\",\\\"This field can only contain letters\\\":\\\"\u042d\u0442\u043e \u043f\u043e\u043b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0431\u0443\u043a\u0432\u044b\\\",\\\"This field can only contain letters and numbers.\\\":\\\"\u042d\u0442\u043e \u043f\u043e\u043b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0431\u0443\u043a\u0432\u044b \u0438 \u0446\u0438\u0444\u0440\u044b\\\",\\\"Are you sure you want to clear the form\\\":\\\"\u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u0444\u043e\u0440\u043c\u0443?\\\",\\\"E-mail does not match\\\":\\\"\u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u0439 \u0430\u0434\u0440\u0435\u0441 \u043d\u0435 \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u0435\u043d\\\",\\\"Enter a valid e-mail address\\\":\\\"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 e-mail \u0430\u0434\u0440\u0435\u0441 \\\",\\\"There are incomplete required fields. Please complete them.\\\":\\\"\u042d\u0442\u043e \u043f\u043e\u043b\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043d\u0430\u0434\u043e \u0437\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u044c. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430 \u0441\u0434\u0435\u043b\u0430\u0439\u0442\u0435 \u044d\u0442\u043e.\\\",\\\"This field can only contain numeric values\\\":\\\"\u042d\u0442\u043e \u043f\u043e\u043b\u0435 \u043c\u043e\u0436\u0435\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0446\u0438\u0444\u0440\u044b\\\",\\\"Please wait...\\\":\\\"\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430 \u043f\u043e\u0434\u043e\u0436\u0434\u0438\u0442\u0435...\\\",\\\"This field is required.\\\":\\\"\u042d\u0442\u043e \u043f\u043e\u043b\u0435 \u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043a \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044e.\\\",\\\"You can only upload following files:\\\":\\\"\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0444\u0430\u0439\u043b\u044b:\\\",\\\"File size cannot be bigger than:\\\":\\\"\u0420\u0430\u0437\u043c\u0435\u0440 \u0444\u0430\u0439\u043b\u0430 \u043d\u0435 \u0434\u043e\u043b\u0436\u0435\u043d \u043f\u0440\u0435\u0432\u044b\u0448\u0430\u0442\u044c:\\\",\\\"Please Wait...\\\":\\\"\\\",\\\"text_47\\\":\\\"<p><\/p>\\\\n<p>\\\\n<\/p><p class=\\\\\\\"MsoNormal\\\\\\\" style=\\\\\\\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\\\\\\\"><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">OCCUPATION AND WORK EXPERIENCE<\/span><\/strong><\/p>\\\\n<p><\/p>\\\",\\\"text_52\\\":\\\"<p><\/p>\\\\n<p>\\\\n<\/p><p class=\\\\\\\"MsoNormal\\\\\\\" style=\\\\\\\"margin-bottom: .0001pt; line-height: normal;\\\\\\\"><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">NEW ZEALAND WORK EXPERIENCE<\/span><\/strong><\/p>\\\\n<p><\/p>\\\",\\\"text_55\\\":\\\"<p><\/p>\\\\n<p><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; line-height: 115%; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">PARTNER\u2019S DETAILS<\/span><\/strong><span style=\\\\\\\"font-size: 12.0pt; line-height: 115%; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\"> (if applicable)<\/span><\/p>\\\",\\\"text_65\\\":\\\"<p><\/p>\\\\n<p><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; line-height: 115%; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">SUBMISSION<\/span><\/strong><\/p>\\\",\\\"text_69\\\":\\\"<p><\/p>\\\\n<p><\/p>\\\\n<p>\\\\n<\/p><p class=\\\\\\\"MsoNormal\\\\\\\" style=\\\\\\\"margin-bottom: .0001pt; line-height: normal;\\\\\\\"><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">ADDITIONAL INFORMATION<\/span><\/strong><\/p>\\\\n<p class=\\\\\\\"MsoNormal\\\\\\\" style=\\\\\\\"margin-bottom: .0001pt; line-height: normal;\\\\\\\"><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">English Language Ability<\/span><\/strong><\/p>\\\\n<span style=\\\\\\\"font-size: 12.0pt; line-height: 115%; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">Unless English is your native language, you may be required to take an IELTS test<\/span><p><\/p>\\\",\\\"text_75\\\":\\\"<p><\/p>\\\\n<p>\\\\n<\/p><p class=\\\\\\\"MsoNormal\\\\\\\" style=\\\\\\\"margin-bottom: .0001pt; line-height: normal;\\\\\\\"><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">Health and Character<\/span><\/strong><\/p>\\\\n<p><\/p>\\\"},\\\"en-AU\\\":{\\\"Full Name\\\":\\\"Full Name\\\",\\\"First Name\\\":\\\"First Name\\\",\\\"Last Name\\\":\\\"Last Name\\\",\\\"Birth Date\\\":\\\"Birth Date\\\",\\\"Month\\\":\\\"Month\\\",\\\"Day\\\":\\\"Day\\\",\\\"Year\\\":\\\"Year\\\",\\\"January\\\":\\\"January\\\",\\\"February\\\":\\\"February\\\",\\\"March\\\":\\\"March\\\",\\\"April\\\":\\\"April\\\",\\\"May\\\":\\\"May\\\",\\\"June\\\":\\\"June\\\",\\\"July\\\":\\\"July\\\",\\\"August\\\":\\\"August\\\",\\\"September\\\":\\\"September\\\",\\\"October\\\":\\\"October\\\",\\\"November\\\":\\\"November\\\",\\\"December\\\":\\\"December\\\",\\\"E-mail\\\":\\\"E-mail\\\",\\\"Area Code\\\":\\\"Area Code\\\",\\\"Phone Number\\\":\\\"Phone Number\\\",\\\"Yes\\\":\\\"Yes\\\",\\\"No\\\":\\\"No\\\",\\\"Back\\\":\\\"Back\\\",\\\"Next\\\":\\\"Next\\\",\\\"None\\\":\\\"None\\\",\\\"Submit\\\":\\\"Submit\\\",\\\"Clear Form\\\":\\\"Clear Form\\\",\\\"This field can only contain letters\\\":\\\"This field can only contain letters\\\",\\\"This field can only contain letters and numbers.\\\":\\\"This field can only contain letters and numbers.\\\",\\\"Are you sure you want to clear the form\\\":\\\"Are you sure you want to clear the form\\\",\\\"E-mail does not match\\\":\\\"E-mail does not match\\\",\\\"Enter a valid e-mail address\\\":\\\"Enter a valid e-mail address\\\",\\\"There are incomplete required fields. Please complete them.\\\":\\\"There are incomplete required fields. Please complete them.\\\",\\\"Your score should be less than\\\":\\\"Your score should be less than\\\",\\\"This field can only contain numeric values\\\":\\\"This field can only contain numeric values\\\",\\\"Please wait...\\\":\\\"Please wait...\\\",\\\"This field is required.\\\":\\\"This field is required.\\\",\\\"You can only upload following files:\\\":\\\"You can only upload following files:\\\",\\\"File size cannot be bigger than:\\\":\\\"File size cannot be bigger than:\\\",\\\"Please Wait...\\\":\\\"Please Wait...\\\",\\\"text_47\\\":\\\"<p><\/p>\\\\n<p>\\\\n<\/p><p class=\\\\\\\"MsoNormal\\\\\\\" style=\\\\\\\"mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; line-height: normal;\\\\\\\"><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">OCCUPATION AND WORK EXPERIENCE<\/span><\/strong><\/p>\\\\n<p><\/p>\\\",\\\"text_52\\\":\\\"<p><\/p>\\\\n<p>\\\\n<\/p><p class=\\\\\\\"MsoNormal\\\\\\\" style=\\\\\\\"margin-bottom: .0001pt; line-height: normal;\\\\\\\"><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">NEW ZEALAND WORK EXPERIENCE<\/span><\/strong><\/p>\\\\n<p><\/p>\\\",\\\"text_55\\\":\\\"<p><\/p>\\\\n<p><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; line-height: 115%; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">PARTNER\u2019S DETAILS<\/span><\/strong><span style=\\\\\\\"font-size: 12.0pt; line-height: 115%; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\"> (if applicable)<\/span><\/p>\\\",\\\"text_65\\\":\\\"<p><\/p>\\\\n<p><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; line-height: 115%; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">SUBMISSION<\/span><\/strong><\/p>\\\",\\\"text_69\\\":\\\"<p><\/p>\\\\n<p><\/p>\\\\n<p>\\\\n<\/p><p class=\\\\\\\"MsoNormal\\\\\\\" style=\\\\\\\"margin-bottom: .0001pt; line-height: normal;\\\\\\\"><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">ADDITIONAL INFORMATION<\/span><\/strong><\/p>\\\\n<p class=\\\\\\\"MsoNormal\\\\\\\" style=\\\\\\\"margin-bottom: .0001pt; line-height: normal;\\\\\\\"><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">English Language Ability<\/span><\/strong><\/p>\\\\n<span style=\\\\\\\"font-size: 12.0pt; line-height: 115%; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">Unless English is your native language, you may be required to take an IELTS test<\/span><p><\/p>\\\",\\\"text_75\\\":\\\"<p><\/p>\\\\n<p>\\\\n<\/p><p class=\\\\\\\"MsoNormal\\\\\\\" style=\\\\\\\"margin-bottom: .0001pt; line-height: normal;\\\\\\\"><strong style=\\\\\\\"mso-bidi-font-weight: normal;\\\\\\\"><span style=\\\\\\\"font-size: 12.0pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;; mso-fareast-font-family: &quot;Times New Roman&quot;;\\\\\\\" lang=\\\\\\\"EN-US\\\\\\\">Health and Character<\/span><\/strong><\/p>\\\\n<p><\/p>\\\"}}\",\"options\":\"Chinese|Russian|English (Australia)\",\"primaryLanguage\":\"en-AU\",\"showStatus\":\"flag-only\",\"theme\":\"light-theme\"});\n    \/*INIT-END*\/\n});\n\n   clearInterval(jsTime);\n }catch(e){}}, 1000);\n\n   JotForm.prepareCalculationsOnTheFly([null,null,{\"name\":\"submit\",\"qid\":\"2\",\"text\":\"Submit\",\"type\":\"control_button\"},null,null,null,null,null,null,null,null,null,null,null,null,null,null,{\"name\":\"phoneDaytime17\",\"qid\":\"17\",\"text\":\"Phone Daytime\",\"type\":\"control_phone\"},{\"name\":\"birthDate18\",\"qid\":\"18\",\"text\":\"Birth Date\",\"type\":\"control_birthdate\"},null,null,null,null,{\"name\":\"fullName23\",\"qid\":\"23\",\"text\":\"Full Name\",\"type\":\"control_fullname\"},null,null,null,{\"name\":\"inWhich\",\"qid\":\"27\",\"text\":\"In which area of study did you major?\",\"type\":\"control_textbox\"},{\"name\":\"email28\",\"qid\":\"28\",\"text\":\"E-mail\",\"type\":\"control_email\"},{\"name\":\"nationality\",\"qid\":\"29\",\"text\":\"Nationality\",\"type\":\"control_textbox\"},{\"name\":\"countryOf\",\"qid\":\"30\",\"text\":\"Country  of Residence\",\"type\":\"control_textbox\"},{\"name\":\"phoneNightime\",\"qid\":\"31\",\"text\":\"Phone Nightime\",\"type\":\"control_phone\"},{\"name\":\"doYou32\",\"qid\":\"32\",\"text\":\"Do you have close relatives (parents \/ siblings \/ adult children) who are NZ citizens or permanent residents living in NZ ?*\",\"type\":\"control_radio\"},{\"name\":\"doYou33\",\"qid\":\"33\",\"text\":\"Do you have close relatives (parents \/ siblings \/ adult children) who are Australian citizens\/permanent residents living in Australia?*\",\"type\":\"control_radio\"},{\"name\":\"whatIs\",\"qid\":\"34\",\"text\":\"What is the highest level of education which you have obtained\/attained? \",\"type\":\"control_textbox\"},{\"name\":\"provideName\",\"qid\":\"35\",\"text\":\"Provide name of the university or college where you completed the study\",\"type\":\"control_textbox\"},{\"name\":\"whatIs36\",\"qid\":\"36\",\"text\":\"What is the name of the qualification obtained?\",\"type\":\"control_textbox\"},{\"name\":\"whenDid37\",\"qid\":\"37\",\"text\":\"When did you complete the qualification?\",\"type\":\"control_textbox\"},null,null,null,null,{\"name\":\"pageBreak\",\"qid\":\"42\",\"text\":\"Page Break\",\"type\":\"control_pagebreak\"},null,{\"name\":\"whichCountry\",\"qid\":\"44\",\"text\":\"Which country did you complete your study?\",\"type\":\"control_textbox\"},{\"name\":\"ifYou45\",\"qid\":\"45\",\"text\":\"If you have achieved another qualification, please state the qualification and the year you completed it\",\"type\":\"control_textbox\"},{\"name\":\"whatIs46\",\"qid\":\"46\",\"text\":\"What is your current occupation? \",\"type\":\"control_textbox\"},{\"name\":\"doubleclickTo\",\"qid\":\"47\",\"text\":\"\\n\\nOCCUPATION AND WORK EXPERIENCE\\n\",\"type\":\"control_text\"},{\"name\":\"howMany\",\"qid\":\"48\",\"text\":\"How many years have you worked full-time in this occupation in your country of residence? \",\"type\":\"control_textbox\"},{\"name\":\"wasThis\",\"qid\":\"49\",\"text\":\"Was this work done in a country other than your country of residence, Australia or New Zealand? If yes, Please state the country, occupation worked in and years you worked in that country.\",\"type\":\"control_textarea\"},{\"name\":\"haveYou\",\"qid\":\"50\",\"text\":\"Have you ever worked in Australia?  If yes, how many years have you worked in Australia? What occupation did you work in, in Australia? What visa did you hold while undertaking the work in Australia?\",\"type\":\"control_textarea\"},{\"name\":\"doYou\",\"qid\":\"51\",\"text\":\"Do you currently have job offer in Australia? If Yes, state details\",\"type\":\"control_textbox\"},{\"name\":\"doubleclickTo52\",\"qid\":\"52\",\"text\":\"\\n\\nNEW ZEALAND WORK EXPERIENCE\\n\",\"type\":\"control_text\"},{\"name\":\"haveYou53\",\"qid\":\"53\",\"text\":\"Have you ever worked in New Zealand? If yes, how many years did you work in New Zealand? What occupation did you work in, in New Zealand? What visa did you hold while undertaking work in New Zealand? \",\"type\":\"control_textarea\"},{\"name\":\"doYou54\",\"qid\":\"54\",\"text\":\"Do you currently have job offer in New Zealand? If Yes, state details\",\"type\":\"control_textbox\"},{\"name\":\"doubleclickTo55\",\"qid\":\"55\",\"text\":\"\\nPARTNER\u2019S DETAILS (if applicable)\",\"type\":\"control_text\"},{\"name\":\"howLong56\",\"qid\":\"56\",\"text\":\"How long have you been living together as a couple?\",\"type\":\"control_textbox\"},{\"name\":\"doYou57\",\"qid\":\"57\",\"text\":\"Do you have a spouse or partner?\",\"type\":\"control_radio\"},{\"name\":\"whatIs58\",\"qid\":\"58\",\"text\":\"What is your partner's name?\",\"type\":\"control_textbox\"},{\"name\":\"whatIs59\",\"qid\":\"59\",\"text\":\"What is your partner's date of birth?\",\"type\":\"control_textbox\"},{\"name\":\"whatIs60\",\"qid\":\"60\",\"text\":\"What is your partner's nationality or country of citizenship?\",\"type\":\"control_textbox\"},{\"name\":\"whatIs61\",\"qid\":\"61\",\"text\":\"What is your partner's main occupation and how long has your partner been in this occupation?\",\"type\":\"control_textbox\"},{\"name\":\"doesYour62\",\"qid\":\"62\",\"text\":\"Does your partner have a job offer in (Choose one)\",\"type\":\"control_dropdown\"},{\"name\":\"whatIs63\",\"qid\":\"63\",\"text\":\"What is your partner's highest level of education attained? \",\"type\":\"control_textbox\"},{\"name\":\"ifYou64\",\"qid\":\"64\",\"text\":\"If you have any additional information that you would like to bring to our attention, please provide details here\",\"type\":\"control_textarea\"},{\"name\":\"doubleclickTo65\",\"qid\":\"65\",\"text\":\"\\nSUBMISSION\",\"type\":\"control_text\"},{\"name\":\"pleaseUpload66\",\"qid\":\"66\",\"text\":\"Please upload your CV\/Resume\",\"type\":\"control_fileupload\"},{\"name\":\"pleaseUpload\",\"qid\":\"67\",\"text\":\"Please upload  your partner\u2019s CV\/Resume\",\"type\":\"control_fileupload\"},{\"name\":\"pageBreak68\",\"qid\":\"68\",\"text\":\"Page Break\",\"type\":\"control_pagebreak\"},{\"name\":\"doubleclickTo69\",\"qid\":\"69\",\"text\":\"\\n\\n\\nADDITIONAL INFORMATION\\nEnglish Language Ability\\nUnless English is your native language, you may be required to take an IELTS test\",\"type\":\"control_text\"},{\"name\":\"doYou70\",\"qid\":\"70\",\"text\":\"Do you have IELTS test result certificate undertaken within the last 3 years? What about your partner? If you have, please provide your scores for Listening, Reading, Writing and Speaking\",\"type\":\"control_textarea\"},{\"name\":\"haveYou71\",\"qid\":\"71\",\"text\":\"Have you or your partner or anyone to be included in your application previously been deported from Australia? Have you or your partner or anyone to be included in your application previously been deported from New Zealand or served with a Deportation Order by Immigration New Zealand?\",\"type\":\"control_textarea\"},{\"name\":\"haveYou72\",\"qid\":\"72\",\"text\":\"Have you or your partner ever been convicted of any criminal offence?\",\"type\":\"control_textbox\"},{\"name\":\"haveYou73\",\"qid\":\"73\",\"text\":\"Have you or your partner or anyone to be included in your application had any serious health issues?\",\"type\":\"control_textbox\"},null,{\"name\":\"doubleclickTo75\",\"qid\":\"75\",\"text\":\"\\n\\nHealth and Character\\n\",\"type\":\"control_text\"},{\"name\":\"howDid76\",\"qid\":\"76\",\"text\":\"How did you find out about TurningPoint Immigration?\",\"type\":\"control_dropdown\"},{\"name\":\"doubleclickTo77\",\"qid\":\"77\",\"text\":\"TurningPoint Immigration Assessment FormWe are bound under the professional Code of Conduct to keep and maintain the confidentiality of your information including any of your interactions with us.\",\"type\":\"control_text\"}]);\n   setTimeout(function() {\nJotForm.paymentExtrasOnTheFly([null,null,{\"name\":\"submit\",\"qid\":\"2\",\"text\":\"Submit\",\"type\":\"control_button\"},null,null,null,null,null,null,null,null,null,null,null,null,null,null,{\"name\":\"phoneDaytime17\",\"qid\":\"17\",\"text\":\"Phone Daytime\",\"type\":\"control_phone\"},{\"name\":\"birthDate18\",\"qid\":\"18\",\"text\":\"Birth Date\",\"type\":\"control_birthdate\"},null,null,null,null,{\"name\":\"fullName23\",\"qid\":\"23\",\"text\":\"Full Name\",\"type\":\"control_fullname\"},null,null,null,{\"name\":\"inWhich\",\"qid\":\"27\",\"text\":\"In which area of study did you major?\",\"type\":\"control_textbox\"},{\"name\":\"email28\",\"qid\":\"28\",\"text\":\"E-mail\",\"type\":\"control_email\"},{\"name\":\"nationality\",\"qid\":\"29\",\"text\":\"Nationality\",\"type\":\"control_textbox\"},{\"name\":\"countryOf\",\"qid\":\"30\",\"text\":\"Country  of Residence\",\"type\":\"control_textbox\"},{\"name\":\"phoneNightime\",\"qid\":\"31\",\"text\":\"Phone Nightime\",\"type\":\"control_phone\"},{\"name\":\"doYou32\",\"qid\":\"32\",\"text\":\"Do you have close relatives (parents \/ siblings \/ adult children) who are NZ citizens or permanent residents living in NZ ?*\",\"type\":\"control_radio\"},{\"name\":\"doYou33\",\"qid\":\"33\",\"text\":\"Do you have close relatives (parents \/ siblings \/ adult children) who are Australian citizens\/permanent residents living in Australia?*\",\"type\":\"control_radio\"},{\"name\":\"whatIs\",\"qid\":\"34\",\"text\":\"What is the highest level of education which you have obtained\/attained? \",\"type\":\"control_textbox\"},{\"name\":\"provideName\",\"qid\":\"35\",\"text\":\"Provide name of the university or college where you completed the study\",\"type\":\"control_textbox\"},{\"name\":\"whatIs36\",\"qid\":\"36\",\"text\":\"What is the name of the qualification obtained?\",\"type\":\"control_textbox\"},{\"name\":\"whenDid37\",\"qid\":\"37\",\"text\":\"When did you complete the qualification?\",\"type\":\"control_textbox\"},null,null,null,null,{\"name\":\"pageBreak\",\"qid\":\"42\",\"text\":\"Page Break\",\"type\":\"control_pagebreak\"},null,{\"name\":\"whichCountry\",\"qid\":\"44\",\"text\":\"Which country did you complete your study?\",\"type\":\"control_textbox\"},{\"name\":\"ifYou45\",\"qid\":\"45\",\"text\":\"If you have achieved another qualification, please state the qualification and the year you completed it\",\"type\":\"control_textbox\"},{\"name\":\"whatIs46\",\"qid\":\"46\",\"text\":\"What is your current occupation? \",\"type\":\"control_textbox\"},{\"name\":\"doubleclickTo\",\"qid\":\"47\",\"text\":\"\\n\\nOCCUPATION AND WORK EXPERIENCE\\n\",\"type\":\"control_text\"},{\"name\":\"howMany\",\"qid\":\"48\",\"text\":\"How many years have you worked full-time in this occupation in your country of residence? \",\"type\":\"control_textbox\"},{\"name\":\"wasThis\",\"qid\":\"49\",\"text\":\"Was this work done in a country other than your country of residence, Australia or New Zealand? If yes, Please state the country, occupation worked in and years you worked in that country.\",\"type\":\"control_textarea\"},{\"name\":\"haveYou\",\"qid\":\"50\",\"text\":\"Have you ever worked in Australia?  If yes, how many years have you worked in Australia? What occupation did you work in, in Australia? What visa did you hold while undertaking the work in Australia?\",\"type\":\"control_textarea\"},{\"name\":\"doYou\",\"qid\":\"51\",\"text\":\"Do you currently have job offer in Australia? If Yes, state details\",\"type\":\"control_textbox\"},{\"name\":\"doubleclickTo52\",\"qid\":\"52\",\"text\":\"\\n\\nNEW ZEALAND WORK EXPERIENCE\\n\",\"type\":\"control_text\"},{\"name\":\"haveYou53\",\"qid\":\"53\",\"text\":\"Have you ever worked in New Zealand? If yes, how many years did you work in New Zealand? What occupation did you work in, in New Zealand? What visa did you hold while undertaking work in New Zealand? \",\"type\":\"control_textarea\"},{\"name\":\"doYou54\",\"qid\":\"54\",\"text\":\"Do you currently have job offer in New Zealand? If Yes, state details\",\"type\":\"control_textbox\"},{\"name\":\"doubleclickTo55\",\"qid\":\"55\",\"text\":\"\\nPARTNER\u2019S DETAILS (if applicable)\",\"type\":\"control_text\"},{\"name\":\"howLong56\",\"qid\":\"56\",\"text\":\"How long have you been living together as a couple?\",\"type\":\"control_textbox\"},{\"name\":\"doYou57\",\"qid\":\"57\",\"text\":\"Do you have a spouse or partner?\",\"type\":\"control_radio\"},{\"name\":\"whatIs58\",\"qid\":\"58\",\"text\":\"What is your partner's name?\",\"type\":\"control_textbox\"},{\"name\":\"whatIs59\",\"qid\":\"59\",\"text\":\"What is your partner's date of birth?\",\"type\":\"control_textbox\"},{\"name\":\"whatIs60\",\"qid\":\"60\",\"text\":\"What is your partner's nationality or country of citizenship?\",\"type\":\"control_textbox\"},{\"name\":\"whatIs61\",\"qid\":\"61\",\"text\":\"What is your partner's main occupation and how long has your partner been in this occupation?\",\"type\":\"control_textbox\"},{\"name\":\"doesYour62\",\"qid\":\"62\",\"text\":\"Does your partner have a job offer in (Choose one)\",\"type\":\"control_dropdown\"},{\"name\":\"whatIs63\",\"qid\":\"63\",\"text\":\"What is your partner's highest level of education attained? \",\"type\":\"control_textbox\"},{\"name\":\"ifYou64\",\"qid\":\"64\",\"text\":\"If you have any additional information that you would like to bring to our attention, please provide details here\",\"type\":\"control_textarea\"},{\"name\":\"doubleclickTo65\",\"qid\":\"65\",\"text\":\"\\nSUBMISSION\",\"type\":\"control_text\"},{\"name\":\"pleaseUpload66\",\"qid\":\"66\",\"text\":\"Please upload your CV\/Resume\",\"type\":\"control_fileupload\"},{\"name\":\"pleaseUpload\",\"qid\":\"67\",\"text\":\"Please upload  your partner\u2019s CV\/Resume\",\"type\":\"control_fileupload\"},{\"name\":\"pageBreak68\",\"qid\":\"68\",\"text\":\"Page Break\",\"type\":\"control_pagebreak\"},{\"name\":\"doubleclickTo69\",\"qid\":\"69\",\"text\":\"\\n\\n\\nADDITIONAL INFORMATION\\nEnglish Language Ability\\nUnless English is your native language, you may be required to take an IELTS test\",\"type\":\"control_text\"},{\"name\":\"doYou70\",\"qid\":\"70\",\"text\":\"Do you have IELTS test result certificate undertaken within the last 3 years? What about your partner? If you have, please provide your scores for Listening, Reading, Writing and Speaking\",\"type\":\"control_textarea\"},{\"name\":\"haveYou71\",\"qid\":\"71\",\"text\":\"Have you or your partner or anyone to be included in your application previously been deported from Australia? Have you or your partner or anyone to be included in your application previously been deported from New Zealand or served with a Deportation Order by Immigration New Zealand?\",\"type\":\"control_textarea\"},{\"name\":\"haveYou72\",\"qid\":\"72\",\"text\":\"Have you or your partner ever been convicted of any criminal offence?\",\"type\":\"control_textbox\"},{\"name\":\"haveYou73\",\"qid\":\"73\",\"text\":\"Have you or your partner or anyone to be included in your application had any serious health issues?\",\"type\":\"control_textbox\"},null,{\"name\":\"doubleclickTo75\",\"qid\":\"75\",\"text\":\"\\n\\nHealth and Character\\n\",\"type\":\"control_text\"},{\"name\":\"howDid76\",\"qid\":\"76\",\"text\":\"How did you find out about TurningPoint Immigration?\",\"type\":\"control_dropdown\"},{\"name\":\"doubleclickTo77\",\"qid\":\"77\",\"text\":\"TurningPoint Immigration Assessment FormWe are bound under the professional Code of Conduct to keep and maintain the confidentiality of your information including any of your interactions with us.\",\"type\":\"control_text\"}]);}, 20); \n<\/script>\n<\/head>\n<body>\n<form class=\"jotform-form\" action=\"https:\/\/submit.jotform.co\/submit\/42432113192847\/\" method=\"post\" enctype=\"multipart\/form-data\" name=\"form_42432113192847\" id=\"42432113192847\" accept-charset=\"utf-8\">\n  <input type=\"hidden\" name=\"formID\" value=\"42432113192847\" \/>\n  <div class=\"form-all\">\n    <link type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"https:\/\/cdn.jotfor.ms\/wizards\/languageWizard\/custom-dropdown\/css\/lang-dd.css?3.3.4626\" \/>\n    <div class=\"cont\">\n      <input type=\"text\" id=\"input_language\" name=\"input_language\" style=\"display:none\" \/>\n      <div class=\"language-dd\" id=\"langDd\" style=\"display:none\">\n        <div class=\"dd-placeholder lang-emp\">\n          Language\n        <\/div>\n        <ul class=\"lang-list dn\" id=\"langList\">\n          <li data-lang=\"zh\" class=\"zh\">\n            Chinese\n          <\/li>\n          <li data-lang=\"ru\" class=\"ru\">\n            Russian\n          <\/li>\n          <li data-lang=\"en-AU\" class=\"en-AU\">\n            English (Australia)\n          <\/li>\n        <\/ul>\n      <\/div>\n    <\/div>\n    <script type=\"text\/javascript\" src=\"https:\/\/cdn.jotfor.ms\/js\/formTranslation.js?3.3.4626\"><\/script>\n    <ul class=\"form-section page-section\">\n      <li class=\"form-line form-line-column form-col-1\" data-type=\"control_text\" id=\"id_77\">\n        <div id=\"cid_77\" class=\"form-input-wide\">\n          <div id=\"text_77\" class=\"form-html\" data-component=\"text\">\n            <p><strong><span style=\"font-size:medium;color:#ff0000;\">TurningPoint Immigration Assessment Form<\/span><\/strong><br \/><br \/><span style=\"font-size:small;\">We are bound under the professional Code of Conduct to keep and maintain the confidentiality of your information including any of your interactions with us.<\/span><\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_fullname\" id=\"id_23\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_23\" for=\"first_23\">\n          Full Name\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_23\" class=\"form-input-wide jf-required\">\n          <div data-wrapper-react=\"true\">\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <input type=\"text\" id=\"first_23\" name=\"q23_fullName23[first]\" class=\"form-textbox validate[required]\" size=\"10\" value=\"\" data-component=\"first\" required=\"\" \/>\n              <label class=\"form-sub-label\" for=\"first_23\" id=\"sublabel_first\" style=\"min-height:13px;\"> First Name <\/label>\n            <\/span>\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <input type=\"text\" id=\"middle_23\" name=\"q23_fullName23[middle]\" class=\"form-textbox\" size=\"10\" value=\"\" data-component=\"middle\" required=\"\" \/>\n              <label class=\"form-sub-label\" for=\"middle_23\" id=\"sublabel_middle\" style=\"min-height:13px;\"> Middle Name <\/label>\n            <\/span>\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <input type=\"text\" id=\"last_23\" name=\"q23_fullName23[last]\" class=\"form-textbox validate[required]\" size=\"15\" value=\"\" data-component=\"last\" required=\"\" \/>\n              <label class=\"form-sub-label\" for=\"last_23\" id=\"sublabel_last\" style=\"min-height:13px;\"> Last Name <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_birthdate\" id=\"id_18\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_18\" for=\"input_18\">\n          Birth Date\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_18\" class=\"form-input-wide jf-required\">\n          <div data-wrapper-react=\"true\">\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <select name=\"q18_birthDate18[month]\" id=\"input_18_month\" class=\"form-dropdown validate[required]\" data-component=\"birthdate-month\">\n                <option>  <\/option>\n                <option value=\"January\"> January <\/option>\n                <option value=\"February\"> February <\/option>\n                <option value=\"March\"> March <\/option>\n                <option value=\"April\"> April <\/option>\n                <option value=\"May\"> May <\/option>\n                <option value=\"June\"> June <\/option>\n                <option value=\"July\"> July <\/option>\n                <option value=\"August\"> August <\/option>\n                <option value=\"September\"> September <\/option>\n                <option value=\"October\"> October <\/option>\n                <option value=\"November\"> November <\/option>\n                <option value=\"December\"> December <\/option>\n              <\/select>\n              <label class=\"form-sub-label\" for=\"input_18_month\" id=\"sublabel_month\" style=\"min-height:13px;\"> Month <\/label>\n            <\/span>\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <select name=\"q18_birthDate18[day]\" id=\"input_18_day\" class=\"form-dropdown validate[required]\" data-component=\"birthdate-day\">\n                <option>  <\/option>\n                <option value=\"1\"> 1 <\/option>\n                <option value=\"2\"> 2 <\/option>\n                <option value=\"3\"> 3 <\/option>\n                <option value=\"4\"> 4 <\/option>\n                <option value=\"5\"> 5 <\/option>\n                <option value=\"6\"> 6 <\/option>\n                <option value=\"7\"> 7 <\/option>\n                <option value=\"8\"> 8 <\/option>\n                <option value=\"9\"> 9 <\/option>\n                <option value=\"10\"> 10 <\/option>\n                <option value=\"11\"> 11 <\/option>\n                <option value=\"12\"> 12 <\/option>\n                <option value=\"13\"> 13 <\/option>\n                <option value=\"14\"> 14 <\/option>\n                <option value=\"15\"> 15 <\/option>\n                <option value=\"16\"> 16 <\/option>\n                <option value=\"17\"> 17 <\/option>\n                <option value=\"18\"> 18 <\/option>\n                <option value=\"19\"> 19 <\/option>\n                <option value=\"20\"> 20 <\/option>\n                <option value=\"21\"> 21 <\/option>\n                <option value=\"22\"> 22 <\/option>\n                <option value=\"23\"> 23 <\/option>\n                <option value=\"24\"> 24 <\/option>\n                <option value=\"25\"> 25 <\/option>\n                <option value=\"26\"> 26 <\/option>\n                <option value=\"27\"> 27 <\/option>\n                <option value=\"28\"> 28 <\/option>\n                <option value=\"29\"> 29 <\/option>\n                <option value=\"30\"> 30 <\/option>\n                <option value=\"31\"> 31 <\/option>\n              <\/select>\n              <label class=\"form-sub-label\" for=\"input_18_day\" id=\"sublabel_day\" style=\"min-height:13px;\"> Day <\/label>\n            <\/span>\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <select name=\"q18_birthDate18[year]\" id=\"input_18_year\" class=\"form-dropdown validate[required]\" data-component=\"birthdate-year\">\n                <option>  <\/option>\n                <option value=\"2018\"> 2018 <\/option>\n                <option value=\"2017\"> 2017 <\/option>\n                <option value=\"2016\"> 2016 <\/option>\n                <option value=\"2015\"> 2015 <\/option>\n                <option value=\"2014\"> 2014 <\/option>\n                <option value=\"2013\"> 2013 <\/option>\n                <option value=\"2012\"> 2012 <\/option>\n                <option value=\"2011\"> 2011 <\/option>\n                <option value=\"2010\"> 2010 <\/option>\n                <option value=\"2009\"> 2009 <\/option>\n                <option value=\"2008\"> 2008 <\/option>\n                <option value=\"2007\"> 2007 <\/option>\n                <option value=\"2006\"> 2006 <\/option>\n                <option value=\"2005\"> 2005 <\/option>\n                <option value=\"2004\"> 2004 <\/option>\n                <option value=\"2003\"> 2003 <\/option>\n                <option value=\"2002\"> 2002 <\/option>\n                <option value=\"2001\"> 2001 <\/option>\n                <option value=\"2000\"> 2000 <\/option>\n                <option value=\"1999\"> 1999 <\/option>\n                <option value=\"1998\"> 1998 <\/option>\n                <option value=\"1997\"> 1997 <\/option>\n                <option value=\"1996\"> 1996 <\/option>\n                <option value=\"1995\"> 1995 <\/option>\n                <option value=\"1994\"> 1994 <\/option>\n                <option value=\"1993\"> 1993 <\/option>\n                <option value=\"1992\"> 1992 <\/option>\n                <option value=\"1991\"> 1991 <\/option>\n                <option value=\"1990\"> 1990 <\/option>\n                <option value=\"1989\"> 1989 <\/option>\n                <option value=\"1988\"> 1988 <\/option>\n                <option value=\"1987\"> 1987 <\/option>\n                <option value=\"1986\"> 1986 <\/option>\n                <option value=\"1985\"> 1985 <\/option>\n                <option value=\"1984\"> 1984 <\/option>\n                <option value=\"1983\"> 1983 <\/option>\n                <option value=\"1982\"> 1982 <\/option>\n                <option value=\"1981\"> 1981 <\/option>\n                <option value=\"1980\"> 1980 <\/option>\n                <option value=\"1979\"> 1979 <\/option>\n                <option value=\"1978\"> 1978 <\/option>\n                <option value=\"1977\"> 1977 <\/option>\n                <option value=\"1976\"> 1976 <\/option>\n                <option value=\"1975\"> 1975 <\/option>\n                <option value=\"1974\"> 1974 <\/option>\n                <option value=\"1973\"> 1973 <\/option>\n                <option value=\"1972\"> 1972 <\/option>\n                <option value=\"1971\"> 1971 <\/option>\n                <option value=\"1970\"> 1970 <\/option>\n                <option value=\"1969\"> 1969 <\/option>\n                <option value=\"1968\"> 1968 <\/option>\n                <option value=\"1967\"> 1967 <\/option>\n                <option value=\"1966\"> 1966 <\/option>\n                <option value=\"1965\"> 1965 <\/option>\n                <option value=\"1964\"> 1964 <\/option>\n                <option value=\"1963\"> 1963 <\/option>\n                <option value=\"1962\"> 1962 <\/option>\n                <option value=\"1961\"> 1961 <\/option>\n                <option value=\"1960\"> 1960 <\/option>\n                <option value=\"1959\"> 1959 <\/option>\n                <option value=\"1958\"> 1958 <\/option>\n                <option value=\"1957\"> 1957 <\/option>\n                <option value=\"1956\"> 1956 <\/option>\n                <option value=\"1955\"> 1955 <\/option>\n                <option value=\"1954\"> 1954 <\/option>\n                <option value=\"1953\"> 1953 <\/option>\n                <option value=\"1952\"> 1952 <\/option>\n                <option value=\"1951\"> 1951 <\/option>\n                <option value=\"1950\"> 1950 <\/option>\n                <option value=\"1949\"> 1949 <\/option>\n                <option value=\"1948\"> 1948 <\/option>\n                <option value=\"1947\"> 1947 <\/option>\n                <option value=\"1946\"> 1946 <\/option>\n                <option value=\"1945\"> 1945 <\/option>\n                <option value=\"1944\"> 1944 <\/option>\n                <option value=\"1943\"> 1943 <\/option>\n                <option value=\"1942\"> 1942 <\/option>\n                <option value=\"1941\"> 1941 <\/option>\n                <option value=\"1940\"> 1940 <\/option>\n                <option value=\"1939\"> 1939 <\/option>\n                <option value=\"1938\"> 1938 <\/option>\n                <option value=\"1937\"> 1937 <\/option>\n                <option value=\"1936\"> 1936 <\/option>\n                <option value=\"1935\"> 1935 <\/option>\n                <option value=\"1934\"> 1934 <\/option>\n                <option value=\"1933\"> 1933 <\/option>\n                <option value=\"1932\"> 1932 <\/option>\n                <option value=\"1931\"> 1931 <\/option>\n                <option value=\"1930\"> 1930 <\/option>\n                <option value=\"1929\"> 1929 <\/option>\n                <option value=\"1928\"> 1928 <\/option>\n                <option value=\"1927\"> 1927 <\/option>\n                <option value=\"1926\"> 1926 <\/option>\n                <option value=\"1925\"> 1925 <\/option>\n                <option value=\"1924\"> 1924 <\/option>\n                <option value=\"1923\"> 1923 <\/option>\n                <option value=\"1922\"> 1922 <\/option>\n                <option value=\"1921\"> 1921 <\/option>\n                <option value=\"1920\"> 1920 <\/option>\n              <\/select>\n              <label class=\"form-sub-label\" for=\"input_18_year\" id=\"sublabel_year\" style=\"min-height:13px;\"> Year <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_email\" id=\"id_28\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_28\" for=\"input_28\">\n          E-mail\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_28\" class=\"form-input-wide jf-required\">\n          <input type=\"email\" id=\"input_28\" name=\"q28_email28\" class=\"form-textbox validate[required, Email]\" size=\"30\" value=\"\" placeholder=\"ex: myname@example.com\" data-component=\"email\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-1 jf-required\" data-type=\"control_textbox\" id=\"id_29\">\n        <label class=\"form-label form-label-top\" id=\"label_29\" for=\"input_29\">\n          Nationality\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_29\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_29\" name=\"q29_nationality\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-2 jf-required\" data-type=\"control_textbox\" id=\"id_30\">\n        <label class=\"form-label form-label-top\" id=\"label_30\" for=\"input_30\">\n          Country of Residence\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_30\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_30\" name=\"q30_countryOf\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_phone\" id=\"id_17\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_17\" for=\"input_17_area\">\n          Phone Daytime\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_17\" class=\"form-input-wide jf-required\">\n          <div data-wrapper-react=\"true\">\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <input type=\"tel\" id=\"input_17_area\" name=\"q17_phoneDaytime17[area]\" class=\"form-textbox validate[required]\" size=\"3\" value=\"\" data-component=\"areaCode\" required=\"\" \/>\n              <span class=\"phone-separate\">\n                \u00a0-\n              <\/span>\n              <label class=\"form-sub-label\" for=\"input_17_area\" id=\"sublabel_area\" style=\"min-height:13px;\"> Area Code <\/label>\n            <\/span>\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <input type=\"tel\" id=\"input_17_phone\" name=\"q17_phoneDaytime17[phone]\" class=\"form-textbox validate[required]\" size=\"8\" value=\"\" data-component=\"phone\" required=\"\" \/>\n              <label class=\"form-sub-label\" for=\"input_17_phone\" id=\"sublabel_phone\" style=\"min-height:13px;\"> Phone Number <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line jf-required\" data-type=\"control_phone\" id=\"id_31\">\n        <label class=\"form-label form-label-top form-label-auto\" id=\"label_31\" for=\"input_31_area\">\n          Phone Nightime\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_31\" class=\"form-input-wide jf-required\">\n          <div data-wrapper-react=\"true\">\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <input type=\"tel\" id=\"input_31_area\" name=\"q31_phoneNightime[area]\" class=\"form-textbox validate[required]\" size=\"3\" value=\"\" data-component=\"areaCode\" required=\"\" \/>\n              <span class=\"phone-separate\">\n                \u00a0-\n              <\/span>\n              <label class=\"form-sub-label\" for=\"input_31_area\" id=\"sublabel_area\" style=\"min-height:13px;\"> Area Code <\/label>\n            <\/span>\n            <span class=\"form-sub-label-container\" style=\"vertical-align:top;\">\n              <input type=\"tel\" id=\"input_31_phone\" name=\"q31_phoneNightime[phone]\" class=\"form-textbox validate[required]\" size=\"8\" value=\"\" data-component=\"phone\" required=\"\" \/>\n              <label class=\"form-sub-label\" for=\"input_31_phone\" id=\"sublabel_phone\" style=\"min-height:13px;\"> Phone Number <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-1 jf-required\" data-type=\"control_radio\" id=\"id_32\">\n        <label class=\"form-label form-label-top\" id=\"label_32\" for=\"input_32\">\n          Do you have close relatives (parents \/ siblings \/ adult children) who are NZ citizens or permanent residents living in NZ ?*\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_32\" class=\"form-input-wide jf-required\">\n          <div class=\"form-multiple-column\" data-columncount=\"2\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_32_0\" name=\"q32_doYou32\" value=\"Yes\" required=\"\" \/>\n              <label id=\"label_input_32_0\" for=\"input_32_0\"> Yes <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_32_1\" name=\"q32_doYou32\" value=\"No\" required=\"\" \/>\n              <label id=\"label_input_32_1\" for=\"input_32_1\"> No <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-2 jf-required\" data-type=\"control_radio\" id=\"id_33\">\n        <label class=\"form-label form-label-top\" id=\"label_33\" for=\"input_33\">\n          Do you have close relatives (parents \/ siblings \/ adult children) who are Australian citizens\/permanent residents living in Australia?*\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_33\" class=\"form-input-wide jf-required\">\n          <div class=\"form-multiple-column\" data-columncount=\"2\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_33_0\" name=\"q33_doYou33\" value=\"Yes\" required=\"\" \/>\n              <label id=\"label_input_33_0\" for=\"input_33_0\"> Yes <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio validate[required]\" id=\"input_33_1\" name=\"q33_doYou33\" value=\"No\" required=\"\" \/>\n              <label id=\"label_input_33_1\" for=\"input_33_1\"> No <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-3 jf-required\" data-type=\"control_textbox\" id=\"id_35\">\n        <label class=\"form-label form-label-top\" id=\"label_35\" for=\"input_35\">\n          Provide name of the university or college where you completed the study\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_35\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_35\" name=\"q35_provideName\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-4 jf-required\" data-type=\"control_textbox\" id=\"id_34\">\n        <label class=\"form-label form-label-top\" id=\"label_34\" for=\"input_34\">\n          What is the highest level of education which you have obtained\/attained?\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_34\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_34\" name=\"q34_whatIs\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-5 jf-required\" data-type=\"control_textbox\" id=\"id_36\">\n        <label class=\"form-label form-label-top\" id=\"label_36\" for=\"input_36\">\n          What is the name of the qualification obtained?\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_36\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_36\" name=\"q36_whatIs36\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-6 jf-required\" data-type=\"control_textbox\" id=\"id_37\">\n        <label class=\"form-label form-label-top\" id=\"label_37\" for=\"input_37\">\n          When did you complete the qualification?\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_37\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_37\" name=\"q37_whenDid37\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-7 jf-required\" data-type=\"control_textbox\" id=\"id_27\">\n        <label class=\"form-label form-label-top\" id=\"label_27\" for=\"input_27\">\n          In which area of study did you major?\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_27\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_27\" name=\"q27_inWhich\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-8 jf-required\" data-type=\"control_textbox\" id=\"id_44\">\n        <label class=\"form-label form-label-top\" id=\"label_44\" for=\"input_44\">\n          Which country did you complete your study?\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_44\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_44\" name=\"q44_whichCountry\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-9 jf-required\" data-type=\"control_textbox\" id=\"id_45\">\n        <label class=\"form-label form-label-top\" id=\"label_45\" for=\"input_45\">\n          If you have achieved another qualification, please state the qualification and the year you completed it\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_45\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_45\" name=\"q45_ifYou45\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li id=\"cid_42\" class=\"form-input-wide\" data-type=\"control_pagebreak\">\n        <div class=\"form-pagebreak\" data-component=\"pagebreak\">\n          <div class=\"form-pagebreak-back-container\">\n            <button id=\"form-pagebreak-back_42\" type=\"button\" class=\"form-pagebreak-back \" data-component=\"pagebreak-back\">\n              Back\n            <\/button>\n          <\/div>\n          <div class=\"form-pagebreak-next-container\">\n            <button id=\"form-pagebreak-next_42\" type=\"button\" class=\"form-pagebreak-next \" data-component=\"pagebreak-next\">\n              Next\n            <\/button>\n          <\/div>\n          <div style=\"clear:both;\" class=\"pageInfo form-sub-label\" id=\"pageInfo_42\">\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section page-section\" style=\"display:none;\">\n      <li class=\"form-line form-line-column form-col-10\" data-type=\"control_text\" id=\"id_47\">\n        <div id=\"cid_47\" class=\"form-input-wide\">\n          <div id=\"text_47\" class=\"form-html\" data-component=\"text\">\n            <p><\/p>\n            <p>\n            <\/p>\n            <p class=\"MsoNormal\" style=\"line-height:normal;\"><strong><span style=\"font-size:12pt;font-family:'Times New Roman', serif;\">OCCUPATION AND WORK EXPERIENCE<\/span><\/strong><\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-11 jf-required\" data-type=\"control_textbox\" id=\"id_46\">\n        <label class=\"form-label form-label-top\" id=\"label_46\" for=\"input_46\">\n          What is your current occupation?\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_46\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_46\" name=\"q46_whatIs46\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-12 jf-required\" data-type=\"control_textbox\" id=\"id_48\">\n        <label class=\"form-label form-label-top\" id=\"label_48\" for=\"input_48\">\n          How many years have you worked full-time in this occupation in your country of residence?\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_48\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_48\" name=\"q48_howMany\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-13 jf-required\" data-type=\"control_textarea\" id=\"id_49\">\n        <label class=\"form-label form-label-top\" id=\"label_49\" for=\"input_49\">\n          Was this work done in a country other than your country of residence, Australia or New Zealand? If yes, Please state the country, occupation worked in and years you worked in that country.\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_49\" class=\"form-input-wide jf-required\">\n          <textarea id=\"input_49\" class=\"form-textarea validate[required]\" name=\"q49_wasThis\" cols=\"40\" rows=\"6\" data-component=\"textarea\" required=\"\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-14 jf-required\" data-type=\"control_textarea\" id=\"id_50\">\n        <label class=\"form-label form-label-top\" id=\"label_50\" for=\"input_50\">\n          Have you ever worked in Australia? If yes, how many years have you worked in Australia? What occupation did you work in, in Australia? What visa did you hold while undertaking the work in Australia?\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_50\" class=\"form-input-wide jf-required\">\n          <textarea id=\"input_50\" class=\"form-textarea validate[required]\" name=\"q50_haveYou\" cols=\"40\" rows=\"6\" data-component=\"textarea\" required=\"\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-15 jf-required\" data-type=\"control_textbox\" id=\"id_51\">\n        <label class=\"form-label form-label-top\" id=\"label_51\" for=\"input_51\">\n          Do you currently have job offer in Australia? If Yes, state details\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_51\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_51\" name=\"q51_doYou\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_text\" id=\"id_52\">\n        <div id=\"cid_52\" class=\"form-input-wide\">\n          <div id=\"text_52\" class=\"form-html\" data-component=\"text\">\n            <p><\/p>\n            <p>\n            <\/p>\n            <p class=\"MsoNormal\" style=\"margin-bottom:.0001pt;line-height:normal;\"><strong><span style=\"font-size:12pt;font-family:'Times New Roman', serif;\">NEW ZEALAND WORK EXPERIENCE<\/span><\/strong><\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-1 jf-required\" data-type=\"control_textarea\" id=\"id_53\">\n        <label class=\"form-label form-label-top\" id=\"label_53\" for=\"input_53\">\n          Have you ever worked in New Zealand? If yes, how many years did you work in New Zealand? What occupation did you work in, in New Zealand? What visa did you hold while undertaking work in New Zealand?\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_53\" class=\"form-input-wide jf-required\">\n          <textarea id=\"input_53\" class=\"form-textarea validate[required]\" name=\"q53_haveYou53\" cols=\"40\" rows=\"6\" data-component=\"textarea\" required=\"\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-2 jf-required\" data-type=\"control_textbox\" id=\"id_54\">\n        <label class=\"form-label form-label-top\" id=\"label_54\" for=\"input_54\">\n          Do you currently have job offer in New Zealand? If Yes, state details\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_54\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_54\" name=\"q54_doYou54\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_text\" id=\"id_55\">\n        <div id=\"cid_55\" class=\"form-input-wide\">\n          <div id=\"text_55\" class=\"form-html\" data-component=\"text\">\n            <p><\/p>\n            <p><strong><span style=\"font-size:12pt;line-height:115%;font-family:'Times New Roman', serif;\">PARTNER\u2019S DETAILS<\/span><\/strong><span style=\"font-size:12pt;line-height:115%;font-family:'Times New Roman', serif;\"> (if applicable)<\/span><\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-1\" data-type=\"control_radio\" id=\"id_57\">\n        <label class=\"form-label form-label-top\" id=\"label_57\" for=\"input_57\"> Do you have a spouse or partner? <\/label>\n        <div id=\"cid_57\" class=\"form-input-wide\">\n          <div class=\"form-multiple-column\" data-columncount=\"2\" data-component=\"radio\">\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_57_0\" name=\"q57_doYou57\" value=\"Yes\" \/>\n              <label id=\"label_input_57_0\" for=\"input_57_0\"> Yes <\/label>\n            <\/span>\n            <span class=\"form-radio-item\">\n              <span class=\"dragger-item\">\n              <\/span>\n              <input type=\"radio\" class=\"form-radio\" id=\"input_57_1\" name=\"q57_doYou57\" value=\"No\" \/>\n              <label id=\"label_input_57_1\" for=\"input_57_1\"> No <\/label>\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-2\" data-type=\"control_textbox\" id=\"id_56\">\n        <label class=\"form-label form-label-top\" id=\"label_56\" for=\"input_56\"> How long have you been living together as a couple? <\/label>\n        <div id=\"cid_56\" class=\"form-input-wide\">\n          <input type=\"text\" id=\"input_56\" name=\"q56_howLong56\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-3\" data-type=\"control_textbox\" id=\"id_58\">\n        <label class=\"form-label form-label-top\" id=\"label_58\" for=\"input_58\"> What is your partner's name? <\/label>\n        <div id=\"cid_58\" class=\"form-input-wide\">\n          <input type=\"text\" id=\"input_58\" name=\"q58_whatIs58\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-4\" data-type=\"control_textbox\" id=\"id_59\">\n        <label class=\"form-label form-label-top\" id=\"label_59\" for=\"input_59\"> What is your partner's date of birth? <\/label>\n        <div id=\"cid_59\" class=\"form-input-wide\">\n          <input type=\"text\" id=\"input_59\" name=\"q59_whatIs59\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-5\" data-type=\"control_textbox\" id=\"id_60\">\n        <label class=\"form-label form-label-top\" id=\"label_60\" for=\"input_60\"> What is your partner's nationality or country of citizenship? <\/label>\n        <div id=\"cid_60\" class=\"form-input-wide\">\n          <input type=\"text\" id=\"input_60\" name=\"q60_whatIs60\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-6\" data-type=\"control_textbox\" id=\"id_61\">\n        <label class=\"form-label form-label-top\" id=\"label_61\" for=\"input_61\"> What is your partner's main occupation and how long has your partner been in this occupation? <\/label>\n        <div id=\"cid_61\" class=\"form-input-wide\">\n          <input type=\"text\" id=\"input_61\" name=\"q61_whatIs61\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-7\" data-type=\"control_dropdown\" id=\"id_62\">\n        <label class=\"form-label form-label-top\" id=\"label_62\" for=\"input_62\"> Does your partner have a job offer in (Choose one) <\/label>\n        <div id=\"cid_62\" class=\"form-input-wide\">\n          <select class=\"form-dropdown\" id=\"input_62\" name=\"q62_doesYour62\" style=\"width:150px;\" data-component=\"dropdown\">\n            <option value=\"\">  <\/option>\n            <option value=\"Australia\"> Australia <\/option>\n            <option value=\"New Zealand\"> New Zealand <\/option>\n            <option value=\"None\"> None <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-8\" data-type=\"control_textbox\" id=\"id_63\">\n        <label class=\"form-label form-label-top\" id=\"label_63\" for=\"input_63\"> What is your partner's highest level of education attained? <\/label>\n        <div id=\"cid_63\" class=\"form-input-wide\">\n          <input type=\"text\" id=\"input_63\" name=\"q63_whatIs63\" data-type=\"input-textbox\" class=\"form-textbox\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_text\" id=\"id_65\">\n        <div id=\"cid_65\" class=\"form-input-wide\">\n          <div id=\"text_65\" class=\"form-html\" data-component=\"text\">\n            <p><\/p>\n            <p><strong><span style=\"font-size:12pt;line-height:115%;font-family:'Times New Roman', serif;\">SUBMISSION<\/span><\/strong><\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-1\" data-type=\"control_textarea\" id=\"id_64\">\n        <label class=\"form-label form-label-top\" id=\"label_64\" for=\"input_64\"> If you have any additional information that you would like to bring to our attention, please provide details here <\/label>\n        <div id=\"cid_64\" class=\"form-input-wide\">\n          <textarea id=\"input_64\" class=\"form-textarea\" name=\"q64_ifYou64\" cols=\"40\" rows=\"6\" data-component=\"textarea\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-2\" data-type=\"control_fileupload\" id=\"id_66\">\n        <label class=\"form-label form-label-top\" id=\"label_66\" for=\"input_66\"> Please upload your CV\/Resume <\/label>\n        <div id=\"cid_66\" class=\"form-input-wide\">\n          <input type=\"file\" id=\"input_66\" name=\"q66_pleaseUpload66\" class=\"form-upload\" data-file-accept=\"pdf, doc, docx, xls, xlsx, csv, txt, rtf, html, zip, mp3, wma, mpg, flv, avi, jpg, jpeg, png, gif\" data-file-maxsize=\"1024\" data-file-minsize=\"0\" data-file-limit=\"0\" data-component=\"fileupload\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-3\" data-type=\"control_fileupload\" id=\"id_67\">\n        <label class=\"form-label form-label-top\" id=\"label_67\" for=\"input_67\"> Please upload your partner\u2019s CV\/Resume <\/label>\n        <div id=\"cid_67\" class=\"form-input-wide\">\n          <input type=\"file\" id=\"input_67\" name=\"q67_pleaseUpload\" class=\"form-upload\" data-file-accept=\"pdf, doc, docx, xls, xlsx, csv, txt, rtf, html, zip, mp3, wma, mpg, flv, avi, jpg, jpeg, png, gif\" data-file-maxsize=\"1024\" data-file-minsize=\"0\" data-file-limit=\"0\" data-component=\"fileupload\" \/>\n        <\/div>\n      <\/li>\n      <li id=\"cid_68\" class=\"form-input-wide\" data-type=\"control_pagebreak\">\n        <div class=\"form-pagebreak\" data-component=\"pagebreak\">\n          <div class=\"form-pagebreak-back-container\">\n            <button id=\"form-pagebreak-back_68\" type=\"button\" class=\"form-pagebreak-back \" data-component=\"pagebreak-back\">\n              Back\n            <\/button>\n          <\/div>\n          <div class=\"form-pagebreak-next-container\">\n            <button id=\"form-pagebreak-next_68\" type=\"button\" class=\"form-pagebreak-next \" data-component=\"pagebreak-next\">\n              Next\n            <\/button>\n          <\/div>\n          <div style=\"clear:both;\" class=\"pageInfo form-sub-label\" id=\"pageInfo_68\">\n          <\/div>\n        <\/div>\n      <\/li>\n    <\/ul>\n    <ul class=\"form-section page-section\" style=\"display:none;\">\n      <li class=\"form-line\" data-type=\"control_text\" id=\"id_69\">\n        <div id=\"cid_69\" class=\"form-input-wide\">\n          <div id=\"text_69\" class=\"form-html\" data-component=\"text\">\n            <p><\/p>\n            <p><\/p>\n            <p>\n            <\/p>\n            <p class=\"MsoNormal\" style=\"margin-bottom:.0001pt;line-height:normal;\"><strong><span style=\"font-size:12pt;font-family:'Times New Roman', serif;\">ADDITIONAL INFORMATION<\/span><\/strong><\/p>\n            <p class=\"MsoNormal\" style=\"margin-bottom:.0001pt;line-height:normal;\"><strong><span style=\"font-size:12pt;font-family:'Times New Roman', serif;\">English Language Ability<\/span><\/strong><\/p>\n            <span style=\"font-size:12pt;line-height:115%;font-family:'Times New Roman', serif;\">\n              Unless English is your native language, you may be required to take an IELTS test\n            <\/span>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-1 jf-required\" data-type=\"control_textarea\" id=\"id_70\">\n        <label class=\"form-label form-label-top\" id=\"label_70\" for=\"input_70\">\n          Do you have IELTS test result certificate undertaken within the last 3 years? What about your partner? If you have, please provide your scores for Listening, Reading, Writing and Speaking\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_70\" class=\"form-input-wide jf-required\">\n          <textarea id=\"input_70\" class=\"form-textarea validate[required]\" name=\"q70_doYou70\" cols=\"40\" rows=\"6\" data-component=\"textarea\" required=\"\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-2\" data-type=\"control_textarea\" id=\"id_71\">\n        <label class=\"form-label form-label-top\" id=\"label_71\" for=\"input_71\"> Have you or your partner or anyone to be included in your application previously been deported from Australia? Have you or your partner or anyone to be included in your application previously been deported from New Zealand or served with a Deportation Order by Immigration New Zealand? <\/label>\n        <div id=\"cid_71\" class=\"form-input-wide\">\n          <textarea id=\"input_71\" class=\"form-textarea\" name=\"q71_haveYou71\" cols=\"40\" rows=\"6\" data-component=\"textarea\"><\/textarea>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-3\" data-type=\"control_text\" id=\"id_75\">\n        <div id=\"cid_75\" class=\"form-input-wide\">\n          <div id=\"text_75\" class=\"form-html\" data-component=\"text\">\n            <p><\/p>\n            <p>\n            <\/p>\n            <p class=\"MsoNormal\" style=\"margin-bottom:.0001pt;line-height:normal;\"><strong><span style=\"font-size:12pt;font-family:'Times New Roman', serif;\">Health and Character<\/span><\/strong><\/p>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-4 jf-required\" data-type=\"control_textbox\" id=\"id_72\">\n        <label class=\"form-label form-label-top\" id=\"label_72\" for=\"input_72\">\n          Have you or your partner ever been convicted of any criminal offence?\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_72\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_72\" name=\"q72_haveYou72\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-5 jf-required\" data-type=\"control_textbox\" id=\"id_73\">\n        <label class=\"form-label form-label-top\" id=\"label_73\" for=\"input_73\">\n          Have you or your partner or anyone to be included in your application had any serious health issues?\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_73\" class=\"form-input-wide jf-required\">\n          <input type=\"text\" id=\"input_73\" name=\"q73_haveYou73\" data-type=\"input-textbox\" class=\"form-textbox validate[required]\" size=\"20\" value=\"\" placeholder=\" \" data-component=\"textbox\" required=\"\" \/>\n        <\/div>\n      <\/li>\n      <li class=\"form-line form-line-column form-col-6 jf-required\" data-type=\"control_dropdown\" id=\"id_76\">\n        <label class=\"form-label form-label-top\" id=\"label_76\" for=\"input_76\">\n          How did you find out about TurningPoint Immigration?\n          <span class=\"form-required\">\n            *\n          <\/span>\n        <\/label>\n        <div id=\"cid_76\" class=\"form-input-wide jf-required\">\n          <select class=\"form-dropdown validate[required]\" id=\"input_76\" name=\"q76_howDid76\" style=\"width:150px;\" data-component=\"dropdown\" required=\"\">\n            <option value=\"\">  <\/option>\n            <option value=\"Internet\"> Internet <\/option>\n            <option value=\"Flyer\"> Flyer <\/option>\n            <option value=\"Family\"> Family <\/option>\n            <option value=\"email\"> email <\/option>\n            <option value=\"Others\"> Others <\/option>\n          <\/select>\n        <\/div>\n      <\/li>\n      <li class=\"form-line\" data-type=\"control_button\" id=\"id_2\">\n        <div id=\"cid_2\" class=\"form-input-wide\">\n          <div style=\"text-align:left;\" class=\"form-buttons-wrapper\">\n            <button id=\"input_2\" type=\"submit\" class=\"form-submit-button form-submit-button-black_glass\" data-component=\"button\">\n              Submit\n            <\/button>\n            <span>\n              \u00a0\n            <\/span>\n            <button id=\"input_reset_2\" type=\"reset\" class=\"form-submit-reset form-submit-button-black_glass\" data-component=\"button\">\n              Clear Form\n            <\/button>\n          <\/div>\n        <\/div>\n      <\/li>\n      <li style=\"clear:both\">\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  <script>\n  JotForm.showJotFormPowered = \"0\";\n  <\/script>\n  <input type=\"hidden\" id=\"simple_spc\" name=\"simple_spc\" value=\"42432113192847\" \/>\n  <script type=\"text\/javascript\">\n  document.getElementById(\"si\" + \"mple\" + \"_spc\").value = \"42432113192847-42432113192847\";\n  <\/script>\n<\/form><\/body>\n<\/html>\n","TurningPoint Immigration Assessment Form",Array,0);(function(){window.handleIFrameMessage=function(e){if(!e.data||!e.data.split)return;var args=e.data.split(":");var iframe=document.getElementById("42432113192847");if(!iframe){return};switch(args[0]){case"scrollIntoView":if(!("nojump"in FrameBuilder.get)){iframe.scrollIntoView();}
break;case"setHeight":iframe.style.height=args[1]+"px";break;case"setMinHeight":iframe.style.minHeight=args[1]+"px";break;case"collapseErrorPage":if(iframe.clientHeight>window.innerHeight){iframe.style.height=window.innerHeight+"px";}
break;case"reloadPage":if(iframe){location.reload();}
break;case"removeIframeOnloadAttr":iframe.removeAttribute("onload");break;case"loadScript":var src=args[1];if(args.length>3){src=args[1]+':'+args[2];}
var script=document.createElement('script');script.src=src;script.type='text/javascript';document.body.appendChild(script);break;case"exitFullscreen":if(window.document.exitFullscreen)window.document.exitFullscreen();else if(window.document.mozCancelFullScreen)window.document.mozCancelFullScreen();else if(window.document.mozCancelFullscreen)window.document.mozCancelFullScreen();else if(window.document.webkitExitFullscreen)window.document.webkitExitFullscreen();else if(window.document.msExitFullscreen)window.document.msExitFullscreen();break;}};if(window.addEventListener){window.addEventListener("message",handleIFrameMessage,false);}else if(window.attachEvent){window.attachEvent("onmessage",handleIFrameMessage);}})();