Advertisement
Guest User

Untitled

a guest
Mar 13th, 2017
1,077
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 230.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link rel="icon" type="image/png" href="assets/images/icons/favicon.html">
  7. <meta name="msvalidate.01" content="65F1DAE1EE3B0B83EEC18DDCD1C8D38B" />
  8. <script type="text/javascript" src="jquery-1.11.3.min.js"></script>
  9. <script>
  10. $(document).ready(function(){
  11.  
  12. $('#changeCountryname').change(function() {
  13. if ($(this).val() === 'Select') {
  14. $('#lawfullcontainer').css("display", "none");
  15. $('#notEligible').css("display", "none");
  16. $('#travellingCanada').css("display", "none");
  17. $('#landorSee').css("display", "none");
  18. $('#completeInfo').css("display", "none");
  19. $('#minorChild').css("display", "none");
  20. $('#doYouStillWantToApplycon').css("display", "none");
  21. } else
  22. if ($(this).val() === 'Israel' || $(this).val() === 'British Overseas Citizen' || $(this).val() === 'Hong Kong SAR' ||
  23. $(this).val() === 'national overseas' || $(this).val() === 'Andorra' || $(this).val() === 'Australia' ||
  24. $(this).val() === 'Antigua' || $(this).val() === 'Bahamas' || $(this).val() === 'Barbados' ||
  25. $(this).val() === 'Belgium' || $(this).val() === 'British Citizen' || $(this).val() === 'Brunei Darussalam' ||
  26. $(this).val() === 'Chile' || $(this).val() === 'Croatia' || $(this).val() === 'Cyprus' ||
  27. $(this).val() === 'Czech Republic' || $(this).val() === 'Denmark' || $(this).val() === 'Estonia' ||
  28. $(this).val() === 'Greece' || $(this).val() === 'Germany' || $(this).val() === 'France' || $(this).val() === 'Hungary' ||
  29. $(this).val() === 'Iceland' || $(this).val() === 'Ireland' || $(this).val() === 'Italy' ||
  30. $(this).val() === 'Japan' || $(this).val() === 'Korea' || $(this).val() === 'Liechtenstein' ||
  31. $(this).val() === 'Latvia' || $(this).val() === 'Lithuania' || $(this).val() === 'Luxembourg' ||
  32. $(this).val() === 'Malta' || $(this).val() === 'Monaco' || $(this).val() === 'Netherlands' ||
  33. $(this).val() === 'New Zealand' || $(this).val() === 'Norway' || $(this).val() === 'Papua New Guinea' ||
  34. $(this).val() === 'Poland' || $(this).val() === 'Portugal' || $(this).val() === 'Samoa' ||
  35. $(this).val() === 'San Marino' || $(this).val() === 'Singapore' || $(this).val() === 'Spain' ||
  36. $(this).val() === 'Sweden' || $(this).val() === 'Switzerland' || $(this).val() === 'Anguilla' ||
  37. $(this).val() === 'Bermuda' || $(this).val() === 'Cayman Islands' || $(this).val() === 'Falkland Islands' ||
  38. $(this).val() === 'Gibraltar' || $(this).val() === 'Montserrat' || $(this).val() === 'Saint Helena'
  39.  
  40. ) {
  41. $('#travellingCanada').css("display", "block");
  42. $('#lawfullcontainer').css("display", "none");
  43. } else {
  44. $('#lawfullcontainer').css("display", "block");
  45. $('#travellingCanada').css("display", "none");
  46. }
  47. });
  48.  
  49. $('#changeLawful').change(function() {
  50. if ($(this).val() === 'Select') {
  51. $('#travellingCanada').css("display", "none");
  52. } else if ($(this).val() === 'No') {
  53. $('#travellingCanada').css("display", "none");
  54. $('#notEligible').css("display", "block");
  55. } else {
  56. $('#travellingCanada').css("display", "block");
  57. $('#notEligible').css("display", "none");
  58. }
  59. });
  60.  
  61. $('#travelCanada').change(function() {
  62. if ($(this).val() === 'Select') {
  63. $('#landorSee').css("display", "none");
  64. } else if ($(this).val() === 'No') {
  65. $('#landorSee').css("display", "none");
  66. $('#notEligible').css("display", "block");
  67. } else {
  68. $('#landorSee').css("display", "block");
  69. $('#notEligible').css("display", "none");
  70. }
  71. });
  72.  
  73. $('#landSeechange').change(function() {
  74. if ($(this).val() === 'Select') {
  75. $('#doYouStillWantToApplycon').css("display", "none");
  76. } else if ($(this).val() === 'No') {
  77. $('#doYouStillWantToApplycon').css("display", "none");
  78. $('#isRepresentativecon').css("display", "block");
  79.  
  80. } else {
  81. $('#doYouStillWantToApplycon').css("display", "block");
  82. $('#isRepresentativecon').css("display", "none");
  83. }
  84. });
  85.  
  86. $('#isRepresentative').change(function() {
  87. if ($(this).val() === 'Select') {
  88. $('#completeInfo').css("display", "none");
  89. $('#minorChild').css("display", "none");
  90. } else if ($(this).val() === 'No') {
  91. $('#completeInfo').css("display", "block");
  92. $('#representative-information').css("display", "none");
  93.  
  94. $("#representative").prop("required", false);
  95. $("#representApplicant").prop("required", false);
  96. $("#lastname").prop("required", false);
  97. $("#firstname").prop("required", false);
  98. $("#mailingAddress").prop("required", false);
  99.  
  100. $('#minorChild').css("display", "none");
  101. } else {
  102. $('#minorChild').css("display", "block");
  103. $('#representative-information').css("display", "block");
  104. $('#completeInfo').css("display", "none");
  105. $("#representative").prop("required", true);
  106. $("#representApplicant").prop("required", true);
  107. $("#lastname").prop("required", true);
  108. $("#firstname").prop("required", true);
  109. $("#mailingAddress").prop("required", true);
  110. }
  111. });
  112.  
  113. $('#employmentOccupation').change(function() {
  114. $('#employmentTitle option[value="Not Selected"]').attr('selected','selected');
  115. if ($(this).val() !== "Homemaker" && $(this).val() !== "Retired" && $(this).val() !== "Unemployed") {
  116. if ($(this).val() === "Student") {
  117. $("#employmentTitleBlock").css("display", "none");
  118. } else {
  119. $("#employmentTitleBlock").css("display", "block");
  120. }
  121. $("#employment-details").css("display", "block");
  122. $("#employmentTitle").prop("required", "required");
  123. $("#employmentName").prop("required", "required");
  124. $("#employmentCity").prop("required", "required");
  125. $("#employmentCountry").prop("required", "required");
  126. $("#employmentStartYear").prop("required", "required");
  127. var tmpClass = "";
  128. if ($(this).val() === "Art, culture, recreation and sport occupations") {
  129. tmpClass = "emp-art";
  130. } else if ($(this).val() === "Business, finance and administration occupations") {
  131. tmpClass = "emp-business";
  132. } else if ($(this).val() === "Education, law and social, community and government services occupations") {
  133. tmpClass = "emp-edu";
  134. } else if ($(this).val() === "Health occupations") {
  135. tmpClass = "emp-heal";
  136. } else if ($(this).val() === "Management occupations") {
  137. tmpClass = "emp-manag";
  138. } else if ($(this).val() === "Manufacturing and utilities occupations") {
  139. tmpClass = "emp-manuf";
  140. } else if ($(this).val() === "Military/armed forces") {
  141. tmpClass = "emp-army";
  142. } else if ($(this).val() === "Natural and applied sciences and related occupations") {
  143. tmpClass = "emp-tech";
  144. } else if ($(this).val() === "Natural resources, agriculture and related production occupations") {
  145. tmpClass = "emp-natur";
  146. } else if ($(this).val() === "Sales and service occupations") {
  147. tmpClass = "emp-sale";
  148. } else if ($(this).val() === "Trades, transport and equipment operators and related occupations") {
  149. tmpClass = "emp-oper";
  150. }
  151. $("#employmentTitle option").css("display", "none");
  152. $("#employmentTitle option."+tmpClass).css("display", "block");
  153. } else {
  154. $("#employment-details").css("display", "none");
  155. $("#employmentTitle").prop("required", "");
  156. $("#employmentName").prop("required", "");
  157. $("#employmentCity").prop("required", "");
  158. $("#employmentCountry").prop("required", "");
  159. $("#employmentStartYear").prop("required", "");
  160. }
  161. });
  162.  
  163. $('#doYouStillWantToApply').change(function() {
  164. if ($(this).val() === 'Select') {
  165. $('#minorChild').css("display", "none");
  166. } else if ($(this).val() === 'No') {
  167. $('#isRepresentativecon').css("display", "none");
  168. $('#notEligible').css("display", "block");
  169. $('#minorChild').css("display", "none");
  170. } else {
  171. $('#isRepresentativecon').css("display", "block");
  172. $('#notEligible').css("display", "none");
  173. }
  174. });
  175.  
  176.  
  177. $('#minorchildChange').change(function() {
  178. if ($(this).val() === 'Select') {
  179. $('#completeInfo').css("display", "none");
  180. } else if ($(this).val() === 'No') {
  181. $('#notEligible').css("display", "none");
  182. $('#completeInfo').css("display", "block");
  183. } else {
  184. $('#completeInfo').css("display", "block");
  185. $('#notEligible').css("display", "none");
  186. }
  187. });
  188.  
  189. $('#hasOtherCitizenship').change(function() {
  190. if ($(this).val() === 'Select') {
  191. $('#CitizenshipsInfoCon').css("display", "none");
  192. } else if ($(this).val() === 'No') {
  193. $('#CitizenshipsInfoCon').css("display", "none");
  194. } else {
  195. $('#CitizenshipsInfoCon').css("display", "block");
  196. }
  197. });
  198.  
  199. $('#hasPreviouslyApplied').change(function() {
  200. if ($(this).val() === 'Select') {
  201. $('#UICnumber').css("display", "none");
  202. } else if ($(this).val() === 'No') {
  203. $('#UICnumber').css("display", "none");
  204. } else {
  205. $('#UICnumber').css("display", "block");
  206. }
  207. });
  208.  
  209.  
  210.  
  211. })
  212. </script>
  213. <style>
  214. #notEligible {
  215. display: none;
  216. }
  217. #lawfullcontainer {
  218. display: none;
  219. }
  220. #travellingCanada {
  221. display: none;
  222. }
  223. #landorSee {
  224. display: none;
  225. }
  226. #completeInfo {
  227. display: none;
  228. }
  229. #minorChild {
  230. display: none;
  231. }
  232. #doYouStillWantToApplycon {
  233. display:none;
  234. }
  235. #isRepresentativecon {
  236. display:none;
  237. }
  238. #CitizenshipsInfoCon {
  239. display: none;
  240. }
  241. #UICnumber {
  242. display: none;
  243. }
  244. </style>
  245. <link rel="stylesheet" href="../assets/components/minifyx/cache/styles_1e2a103354.css" type="text/css" />
  246. </head>
  247. <body class="cart-empty">
  248. <div id="header">
  249. <div class="container">
  250. <div class="row">
  251.  
  252. <div class="logo clearfix">
  253.  
  254. <div class="span4">
  255. <a href="../index.html">
  256. <img class="top-logo" src="../assets/images/header/canada-eta.png" alt="Canada eTA"/>
  257. </a>
  258. </div>
  259. <div class="span4 slogan hidden-phone">
  260. <p>
  261. TOURIST | TRANSIT | BUSINESS
  262. </p>
  263. </div>
  264. <div class="span2 contact-button">
  265. <p><a href="mailto:info@etavisa-gov.ca" class="btn btn-default btn-small">&#9993; | Help and Support</a></p>
  266. </div>
  267. <div class="span2 customer-services hidden-phone">
  268.  
  269.  
  270. </div>
  271. </div>
  272. </div>
  273. </div>
  274. </div>
  275.  
  276.  
  277.  
  278.  
  279. <div class="container">
  280.  
  281. <h1>Canada eTA Application</h1>
  282. <div id="mainContent">
  283.  
  284. </div>
  285.  
  286.  
  287. <div class="row esta-apply">
  288. <div class="span8">
  289. <form method="post" action="action.php" class="form-horizontal" id="apply-form">
  290. <div id="prerequisite-information" style="padding-bottom: 12px;">
  291. <h2>Application Information</h2>
  292. <div class="control-group form-field">
  293. <label class="control-label"> What is the Country/Territory of your passport?</label>
  294. <div class="controls">
  295. <div class="input-append">
  296. <select name="countryName" required="required" id="changeCountryname">
  297. <option value="Select">
  298. Select
  299. </option>
  300. <option value="Afghanistan">
  301. Afghanistan
  302. </option><option value="Albania">
  303. Albania
  304. </option><option value="Algeria">
  305. Algeria
  306. </option><option value="Andorra">
  307. Andorra
  308. </option><option value="Angola">
  309. Angola
  310. </option>
  311. <option value="Anguilla">
  312. Anguilla
  313. </option>
  314. <option value="Antigua">
  315. Antigua And Barbuda
  316. </option><option value="Argentina">
  317. Argentina
  318. </option><option value="Armenia">
  319. Armenia
  320. </option><option value="Australia">
  321. Australia
  322. </option><option value="Austria">
  323. Austria
  324. </option><option value="Azerbaijan">
  325. Azerbaijan
  326. </option><option value="Bahamas">
  327. Bahamas, Commonwealth of the
  328. </option><option value="Bahrain">
  329. Bahrain
  330. </option>
  331. <option value="Bermuda">
  332. Bermuda
  333. </option>
  334. <option value="Bangladesh">
  335. Bangladesh
  336. </option>
  337. <option value="Brunei Darussalam">
  338. Brunei Darussalam
  339. </option>
  340. <option value="Barbados">
  341. Barbados
  342. </option><option value="Belarus">
  343. Belarus
  344. </option><option value="Belgium">
  345. Belgium
  346. </option><option value="Belize">
  347. Belize
  348. </option><option value="Benin">
  349. Benin, Republic of
  350. </option><option value="Bhutan">
  351. Bhutan
  352. </option><option value="Bolivia">
  353. Bolivia
  354. </option><option value="Bosnia and Herzegovina">
  355. Bosnia and Herzegovina
  356. </option><option value="Botswana">
  357. Botswana, Republic Of
  358. </option><option value="Brazil">
  359. Brazil
  360. </option><option value="British Citizen">
  361. British Citizen
  362. </option><option value="British National Overseas">
  363. British National Overseas
  364. </option><option value="British Overseas Citizen">
  365. British Overseas Citizen
  366. </option><option value="Brunei">
  367. Brunei
  368. </option><option value="Bulgaria">
  369. Bulgaria
  370. </option><option value="Burkina Faso">
  371. Burkina Faso
  372. </option><option value="Burundi">
  373. Burundi
  374. </option><option value="Cambodia">
  375. Cambodia
  376. </option>
  377. <option value="Cayman Islands">
  378. Cayman Islands
  379. </option>
  380. <option value="Cameroon">
  381. Cameroon, Republic of
  382. </option><option value="Canada">
  383. Canada
  384. </option><option value="Cape Verde">
  385. Cape Verde Islands
  386. </option><option value="Central African">
  387. Central African Republic
  388. </option><option value="Chad, Republic Of">
  389. Chad, Republic Of
  390. </option>
  391.  
  392. <option value="China">
  393. China, People's Republic of
  394. </option>
  395. <option value="Chile">
  396. Chile
  397. </option>
  398. <option value="Colombia">
  399. Colombia
  400. </option><option value="Comoros">
  401. Comoros
  402. </option><option value="Costa Rica">
  403. Costa Rica
  404. </option><option value="Cote d'Ivoire">
  405. Cote d'Ivoire, Republic of
  406. </option><option value="Croatia">
  407. Croatia
  408. </option><option value="Cuba">
  409. Cuba
  410. </option><option value="Cyprus">
  411. Cyprus
  412. </option><option value="Czech Republic">
  413. Czech Republic
  414. </option><option value="Denmark">
  415. Denmark
  416. </option><option value="Djibouti, Republic of">
  417. Djibouti, Republic of
  418. </option><option value="Dominica">
  419. Dominica, Commonwealth of
  420. </option><option value="Dominican">
  421. Dominican Republic
  422. </option><option value="DPR Korea">
  423. DPR Korea (North)
  424. </option><option value="East Timor">
  425. East Timor
  426. </option><option value=" Ecuador">
  427. Ecuador
  428. </option><option value="Egypt">
  429. Egypt
  430. </option><option value="El Salvador">
  431. El Salvador
  432. </option><option value="Eritrea">
  433. Eritrea
  434. </option><option value="Estonia">
  435. Estonia
  436. </option><option value="Ethiopia">
  437. Ethiopia
  438. </option>
  439. <option value="Falkland Islands">
  440. Falkland Islands
  441. </option>
  442. <option value="Federated States">
  443. Federated States of Micronesia
  444. </option><option value="Fiji">
  445. Fiji
  446. </option><option value="Finland">
  447. Finland
  448. </option><option value="France">
  449. France
  450. </option><option value="FYR Macedonia">
  451. FYR Macedonia
  452. </option><option value="Gabonese">
  453. Gabonese Republic
  454. </option><option value="Gambia">
  455. Gambia
  456. </option>
  457. <option value="Gibraltar">
  458. Gibraltar
  459. </option>
  460. <option value="Georgia">
  461. Georgia
  462. </option><option value="Germany">
  463. Germany, Federal Republic Of
  464. </option><option value="Ghana">
  465. Ghana
  466. </option><option value="Greece">
  467. Greece
  468. </option><option value="Grenada">
  469. Grenada
  470. </option><option value="Guatemala">
  471. Guatemala
  472. </option><option value="Haiti">
  473. Haiti
  474. </option><option value="Hong Kong SAR">
  475. Hong Kong SAR
  476. </option><option value="Hungary">
  477. Hungary
  478. </option><option value="Iceland">
  479. Iceland
  480. </option><option value="India">
  481. India
  482. </option><option value="Indonesia">
  483. Indonesia, Republic of
  484. </option><option value="Iran">
  485. Iran
  486. </option><option value="Iraq">
  487. Iraq
  488. </option><option value="Ireland">
  489. Ireland, Republic Of
  490. </option><option value="Israel">
  491. Israel
  492. </option><option value="Italy">
  493. Italy
  494. </option><option value="Jamaica">
  495. Jamaica
  496. </option><option value="Japan">
  497. Japan
  498. </option><option value="Jordan">
  499. Jordan
  500. </option><option value="Kenya">
  501. Kenya
  502. </option><option value="Korea">
  503. Korea, Republic Of (South)
  504. </option><option value="Kuwait">
  505. Kuwait
  506. </option><option value="Latvia">
  507. Latvia
  508. </option>
  509.  
  510. <option value="Lebanon">
  511. Lebanon
  512. </option><option value="Lesotho">
  513. Lesotho
  514. </option><option value="Liberia">
  515. Liberia
  516. </option><option value="Libya">
  517. Libya
  518. </option>
  519. <option value="Liechtenstein">
  520. Liechtenstein
  521. </option>
  522. <option value="Lithuania">
  523. Lithuania
  524. </option>
  525. <option value="Luxembourg">
  526. Luxembourg
  527. </option>
  528.  
  529. <option value="Malaysia">
  530. Malta
  531. </option>
  532. <option value="Malta">
  533. Malaysia
  534. </option><option value="Mexico">
  535. Mexico
  536. </option><option value="Monaco">
  537. Monaco
  538. </option>
  539. <option value="Montserrat">
  540. Montserrat
  541. </option>
  542. <option value="Mongolia">
  543. Mongolia
  544. </option><option value="Morocco">
  545. Morocco
  546. </option><option value="Mozambique">
  547. Mozambique
  548. </option><option value="Nepal">
  549. Nepal
  550. </option>
  551. <option value="Netherlands">
  552. Netherlands
  553. </option>
  554. <option value=" New Zealand">
  555. New Zealand
  556. </option><option value="Norway">
  557. Norway
  558. </option><option value="Oman">
  559. Oman
  560. </option><option value="Pakistan">
  561. Pakistan
  562. </option><option value="Palestinian">
  563. Palestinian Autho.Gaza/W Bank
  564. </option>
  565. <option value="Papua New Guinea">
  566. Papua New Guinea
  567. </option>
  568. <option value="Panama">
  569. Panama, Republic of
  570. </option><option value="Philippines">
  571. Philippines
  572. </option>
  573. <option value="Portugal">
  574. Portugal
  575. </option>
  576. <option value="Poland">
  577. Poland
  578. </option><option value="Qatar">
  579. Qatar
  580. </option><option value="Romania">
  581. Romania
  582. </option><option value="Russia">
  583. Russia
  584. </option>
  585. <option value="San Marino">
  586. San Marino
  587. </option>
  588. <option value="Saint Lucia">
  589. Saint Lucia
  590. </option>
  591. <option value="Saint Helena">
  592. Saint Helena
  593. </option>
  594. <option value="Samoa">
  595. Samoa, American
  596. </option><option value="Saudi Arabia">
  597. Saudi Arabia
  598. </option><option value="Singapore">
  599. Singapore
  600. </option><option value="South Sudan">
  601. South Sudan, Republic of
  602. </option><option value="Spain">
  603. Spain
  604. </option><option value="Sri Lanka">
  605. Sri Lanka
  606. </option><option value="Sudan">
  607. Sudan, Republic of
  608. </option><option value="Swaziland">
  609. Swaziland
  610. </option><option value="Sweden">
  611. Sweden
  612. </option><option value="Switzerland">
  613. Switzerland
  614. </option><option value="Syria">
  615. Syria
  616. </option><option value="Taiwan">
  617. Taiwan
  618. </option><option value="Tajikistan">
  619. Tajikistan
  620. </option><option value="Tanzania">
  621. Tanzania, United Republic Of
  622. </option><option value="Thailand">
  623. Thailand
  624. </option><option value="Togolese">
  625. Togolese Republic
  626. </option><option value="Tonga">
  627. Tonga
  628. </option><option value="Trinidad">
  629. Trinidad &amp; Tobago, Republic of
  630. </option><option value="Tunisia">
  631. Tunisia
  632. </option><option value="Turkey">
  633. Turkey
  634. </option><option value="Turkmenistan">
  635. Turkmenistan
  636. </option><option value="Tuvalu">
  637. Tuvalu
  638. </option><option value="United Arab Emirates">
  639. United Arab Emirates
  640. </option><option value=" United States of America">
  641. United States of America
  642. </option><option value="Uruguay">
  643. Uruguay
  644. </option><option value="Uzbekistan">
  645. Uzbekistan
  646. </option><option value="Vanuatu">
  647. Vanuatu
  648. </option><option value="Venezuela">
  649. Venezuela
  650. </option><option value="Western Sahara">
  651. Western Sahara
  652. </option><option value="Yemen">
  653. Yemen, Republic of
  654. </option><option value="Zambia">
  655. Zambia
  656. </option><option value="Zimbabwe">
  657. Zimbabwe
  658. </option>
  659. </select>
  660. </div>
  661. </div>
  662. </div>
  663. <div class="control-group form-field" id="lawfullcontainer">
  664. <label class="control-label">Are you a lawful permanent resident of the United States with a valid alien registration card (Green Card)?</label>
  665. <div class="controls">
  666. <div class="input-append">
  667. <select name="permanentResident" required="required" id="changeLawful">
  668. <option value="Select">Select </option>
  669. <option value="Yes">Yes </option>
  670. <option value="No">No </option>
  671. </select>
  672. </div>
  673. </div>
  674. </div>
  675. <div class="control-group form-field" id="travellingCanada">
  676. <label class="control-label">
  677. Are you travelling to Canada by air?
  678. </label>
  679. <div class="controls">
  680. <div class="input-append">
  681. <select name="travellingCanada" id="travelCanada" required="required">
  682. <option value="Select">Select</option>
  683. <option value="Yes"> Yes</option>
  684. <option value="No"> No </option>
  685. </select>
  686. </div>
  687. </div>
  688. </div>
  689. <div class="control-group form-field" id="landorSee">
  690. <label class="control-label">
  691. Are you any of the following?<br>• A visitor entering Canada by land or sea<br>• A citizen of France residing in and travelling from St. Pierre and Miquelon<br>• A student with a valid study permit for Canada, which I obtained on or after August 1, 2015<br>• A foreign worker with a valid work permit for Canada, which I obtained on or after August 1, 2015<br>• A person holding valid status in Canada and entering Canada from the United States or St. Pierre and Miquelon<br>• A member of Visiting Forces visiting Canada on official duties/orders<br>• A member of flight crew, a civil aviation inspector or an accident investigator<br>• An accredited diplomat
  692. </label>
  693. <div class="controls">
  694. <div class="input-append">
  695. <select name="landorSee" required="required" id="landSeechange">
  696. <option value="Select">
  697. Select
  698. </option>
  699. <option value="Yes">
  700. Yes
  701. </option>
  702. <option value="No">
  703. No
  704. </option>
  705. </select>
  706. </div>
  707. </div>
  708. </div>
  709.  
  710. <div class="control-group form-field" id="doYouStillWantToApplycon">
  711. <label class="control-label">
  712. For the purpose of your current travel, you do not require an eTA. You may still apply for one if you wish
  713. </label>
  714. <div class="controls">
  715. <div class="input-append">
  716. <select id="doYouStillWantToApply">
  717. <option value="Select">
  718. Select
  719. </option>
  720. <option value="Yes">
  721. Yes
  722. </option>
  723. <option value="No">
  724. No
  725. </option>
  726. </select>
  727. </div>
  728. </div>
  729. </div>
  730.  
  731. <div class="control-group form-field" id="isRepresentativecon">
  732. <label class="control-label">
  733. Are you a representative or a parent/guardian applying on behalf of an eTA applicant?
  734. </label>
  735. <div class="controls">
  736. <div class="input-append">
  737. <select id="isRepresentative" name="isRepresentativecon">
  738. <option value="Select">
  739. Select
  740. </option>
  741. <option value="Yes">
  742. Yes
  743. </option>
  744. <option value="No">
  745. No
  746. </option>
  747. </select>
  748. </div>
  749. </div>
  750. </div>
  751.  
  752. <div class="control-group form-field" id="minorChild">
  753. <label class="control-label">
  754. Are you applying on behalf of a minor child?
  755. </label>
  756. <div class="controls">
  757. <div class="input-append">
  758. <select name="minorChild" id="minorchildChange" required="required">
  759. <option value="Select">
  760. Select
  761. </option>
  762. <option value="Yes">
  763. Yes
  764. </option>
  765. <option value="No">
  766. No
  767. </option>
  768. </select>
  769. </div>
  770. </div>
  771. </div>
  772. <div id="notEligible">
  773. <h2>Not eTA-eligible</h2>
  774. <p>Based on your answers, for the purpose of your current travel, you <strong>may be eligible for a visa</strong> to visit Canada.</p>
  775. <p>To find out, use the Come to Canada tool. Answer a few questions to find out which visa type may be best for you. You will need about 10-15 minutes to complete the questionnaire. Once completed, you will get a detailed list of instructions on what to do next and how to submit your application.</p>
  776. <p><a href="http://www.cic.gc.ca/ctc-vac/getting-started.asp" target="_blank"> Start questionnaire </a></p>
  777. </div>
  778. <div id="completeInfo">
  779.  
  780. <div id="representative-information">
  781. <h2>
  782. Representative information
  783. </h2>
  784. <div class="control-group form-field">
  785. <label class="control-label">
  786. My representative is
  787. </label>
  788. <div class="controls">
  789. <div class="input-append">
  790. <select name="representative" id="representative" required="required">
  791. <option value="">
  792. Select
  793. </option>
  794. <option value="A Canadian provincial or territorial law society">
  795. A Canadian provincial or territorial law society
  796. </option><option value="A family member or friend">
  797. A family member or friend
  798. </option><option value="A member of a non-governmental or religious organization">
  799. A member of a non-governmental or religious organization
  800. </option><option value="A member of the Immigration Consultants of Canada Regulatory Council (ICCRC)">
  801. A member of the Immigration Consultants of Canada Regulatory Council (ICCRC)
  802. </option><option value="A travel agent">
  803. A travel agent
  804. </option><option value="The Chambre des notaires du Quebec">
  805. The Chambre des notaires du Quebec
  806. </option>
  807. </select>
  808. </div>
  809. </div>
  810. </div>
  811. <div class="control-group form-field">
  812. <label class="control-label">
  813. Are you being paid to represent the applicant and complete the form on their behalf?
  814. </label>
  815. <div class="controls">
  816. <div class="input-append">
  817. <select name="representApplicant" id="representApplicant" required="required">
  818. <option value="Not Selected">
  819. Select
  820. </option>
  821. <option value="Yes">
  822. Yes
  823. </option>
  824. <option value="No">
  825. No
  826. </option>
  827. </select>
  828. </div>
  829. </div>
  830. </div>
  831.  
  832.  
  833. <div class="control-group form-field">
  834. <label class="control-label">
  835. Last name(s)
  836. </label>
  837. <div class="controls">
  838. <div class="input-append">
  839. <input type="text" maxlength="50" name="lastname" id="lastname" required="required">
  840. </div>
  841. </div>
  842. </div>
  843.  
  844. <div class="control-group form-field">
  845. <label class="control-label">
  846. First name(s)
  847. </label>
  848. <div class="controls">
  849. <div class="input-append">
  850. <input type="text" name="firstname" maxlength="50" id="firstname" required="required">
  851. </div>
  852. </div>
  853. </div>
  854.  
  855. <div class="control-group form-field">
  856. <label class="control-label">
  857. Mailing Address
  858. </label>
  859. <div class="controls">
  860. <div class="input-append">
  861. <input type="text" name="mailingAddress" maxlength="200" id="mailingAddress" required="required">
  862. </div>
  863. </div>
  864. </div>
  865.  
  866. <div class="control-group form-field">
  867. <label class="control-label">
  868. Telephone number
  869. </label>
  870. <div class="controls">
  871. <div class="input-append">
  872. <input type="text" maxlength="20" name="tellNumb">
  873. </div>
  874. </div>
  875. </div>
  876.  
  877. <div class="control-group form-field">
  878. <label class="control-label">
  879. Fax number
  880. </label>
  881. <div class="controls">
  882. <div class="input-append">
  883. <input type="text" name="faxNumber" maxlength="20">
  884. </div>
  885. </div>
  886. </div>
  887. <div class="control-group form-field">
  888. <label class="control-label">
  889. Email address
  890. </label>
  891. <div class="controls">
  892. <div class="input-append">
  893. <input type="text" name="emailAddress" maxlength="100">
  894. </div>
  895. </div>
  896. </div>
  897. <div class="control-group form-field">
  898. <div class="controls">
  899. <label class="checkbox">
  900. <input type="checkbox">
  901. I declare that my contact and personal information above is truthful, complete and correct.
  902. </label>
  903. </div>
  904. </div>
  905. <div class="control-group form-field">
  906. <div class="controls">
  907. <label class="checkbox">
  908. <input type="checkbox">
  909. I understand and accept that I am the person appointed by the applicant to conduct business on the applicant or sponsor's behalf with Citizenship and Immigration Canada and the Canada Border Services Agency.
  910. </label>
  911. </div>
  912. </div>
  913. </div>
  914.  
  915.  
  916. <div id="personal-information">
  917. <h2>
  918. Personal details
  919. </h2>
  920. <div class="control-group form-field">
  921. <label class="control-label">
  922. Last name(s)
  923. </label>
  924. <div class="controls">
  925. <div class="input-append">
  926. <input type="text" name="plastname" maxlength="50" required="required">
  927. </div>
  928. </div>
  929. </div>
  930.  
  931. <div class="control-group form-field">
  932. <label class="control-label">
  933. First name(s)
  934. </label>
  935. <div class="controls">
  936. <div class="input-append">
  937. <input type="text" name="pfirstName" maxlength="50" required="required">
  938. </div>
  939. </div>
  940. </div>
  941. <div class="control-group form-field">
  942. <label class="control-label">
  943. Date of birth
  944. </label>
  945. <div class="controls">
  946. <div class="input-append">
  947. <input type="date" name="pdate" required="required" >
  948. </div>
  949. </div>
  950. </div>
  951. <div class="control-group form-field">
  952. <label class="control-label">
  953. Country/territory of birth
  954. </label>
  955. <div class="controls">
  956. <div class="input-append">
  957. <select name="pcountrybirth" required="required">
  958. <option value="Not Selected">
  959. Select
  960. </option>
  961. <option value="Afghanistan">
  962. Afghanistan
  963. </option><option value="Albania">
  964. Albania
  965. </option><option value="Algeria">
  966. Algeria
  967. </option><option value="Andorra">
  968. Andorra
  969. </option><option value="Angola">
  970. Angola
  971. </option><option value="Antigua">
  972. Antigua And Barbuda
  973. </option><option value="Argentina">
  974. Argentina
  975. </option><option value="Armenia">
  976. Armenia
  977. </option><option value="Australia">
  978. Australia
  979. </option><option value="Austria">
  980. Austria
  981. </option><option value="Azerbaijan">
  982. Azerbaijan
  983. </option><option value="Bahamas">
  984. Bahamas, Commonwealth of the
  985. </option><option value="Bahrain">
  986. Bahrain
  987. </option><option value="Bangladesh">
  988. Bangladesh
  989. </option><option value="Barbados">
  990. Barbados
  991. </option><option value="Belarus">
  992. Belarus
  993. </option><option value="Belgium">
  994. Belgium
  995. </option><option value="Belize">
  996. Belize
  997. </option><option value="Benin">
  998. Benin, Republic of
  999. </option><option value="Bhutan">
  1000. Bhutan
  1001. </option><option value="Bolivia">
  1002. Bolivia
  1003. </option><option value="Bosnia and Herzegovina">
  1004. Bosnia and Herzegovina
  1005. </option><option value="Botswana">
  1006. Botswana, Republic Of
  1007. </option><option value="Brazil">
  1008. Brazil
  1009. </option><option value="British Citizen">
  1010. British Citizen
  1011. </option><option value="British National Overseas">
  1012. British National Overseas
  1013. </option><option value="British Overseas Citizen">
  1014. British Overseas Citizen
  1015. </option><option value="Brunei">
  1016. Brunei
  1017. </option><option value="Bulgaria">
  1018. Bulgaria
  1019. </option><option value="Burkina Faso">
  1020. Burkina Faso
  1021. </option><option value="Burundi">
  1022. Burundi
  1023. </option><option value="Cambodia">
  1024. Cambodia
  1025. </option><option value="Cameroon">
  1026. Cameroon, Republic of
  1027. </option><option value="Canada">
  1028. Canada
  1029. </option><option value="Cape Verde">
  1030. Cape Verde Islands
  1031. </option><option value="Central African">
  1032. Central African Republic
  1033. </option><option value="Chad, Republic Of">
  1034. Chad, Republic Of
  1035. </option>
  1036. <option value="China">
  1037. China, People's Republic of
  1038. </option><option value="Colombia">
  1039. Colombia
  1040. </option><option value="Comoros">
  1041. Comoros
  1042. </option><option value="Costa Rica">
  1043. Costa Rica
  1044. </option><option value="Cote d'Ivoire">
  1045. Cote d'Ivoire, Republic of
  1046. </option><option value="Croatia">
  1047. Croatia
  1048. </option><option value="Cuba">
  1049. Cuba
  1050. </option><option value="Cyprus">
  1051. Cyprus
  1052. </option><option value="Czech Republic">
  1053. Czech Republic
  1054. </option><option value="Denmark">
  1055. Denmark
  1056. </option><option value="Djibouti, Republic of">
  1057. Djibouti, Republic of
  1058. </option><option value="Dominica">
  1059. Dominica, Commonwealth of
  1060. </option><option value="Dominican">
  1061. Dominican Republic
  1062. </option><option value="DPR Korea">
  1063. DPR Korea (North)
  1064. </option><option value="East Timor">
  1065. East Timor
  1066. </option><option value=" Ecuador">
  1067. Ecuador
  1068. </option><option value="Egypt">
  1069. Egypt
  1070. </option><option value="El Salvador">
  1071. El Salvador
  1072. </option><option value="Eritrea">
  1073. Eritrea
  1074. </option><option value="Estonia">
  1075. Estonia
  1076. </option><option value="Ethiopia">
  1077. Ethiopia
  1078. </option><option value="Federated States">
  1079. Federated States of Micronesia
  1080. </option><option value="Fiji">
  1081. Fiji
  1082. </option><option value="Finland">
  1083. Finland
  1084. </option><option value="France">
  1085. France
  1086. </option><option value="FYR Macedonia">
  1087. FYR Macedonia
  1088. </option><option value="Gabonese">
  1089. Gabonese Republic
  1090. </option><option value="Gambia">
  1091. Gambia
  1092. </option><option value="Georgia">
  1093. Georgia
  1094. </option><option value="Germany">
  1095. Germany, Federal Republic Of
  1096. </option><option value="Ghana">
  1097. Ghana
  1098. </option><option value="Greece">
  1099. Greece
  1100. </option><option value="Grenada">
  1101. Grenada
  1102. </option><option value="Guatemala">
  1103. Guatemala
  1104. </option><option value="Haiti">
  1105. Haiti
  1106. </option><option value="Hong Kong SAR">
  1107. Hong Kong SAR
  1108. </option><option value="Hungary">
  1109. Hungary
  1110. </option><option value="Iceland">
  1111. Iceland
  1112. </option><option value="India">
  1113. India
  1114. </option><option value="Indonesia">
  1115. Indonesia, Republic of
  1116. </option><option value="Iran">
  1117. Iran
  1118. </option><option value="Iraq">
  1119. Iraq
  1120. </option><option value="Ireland">
  1121. Ireland, Republic Of
  1122. </option><option value="Israel">
  1123. Israel
  1124. </option><option value="Italy">
  1125. Italy
  1126. </option><option value="Jamaica">
  1127. Jamaica
  1128. </option><option value="Japan">
  1129. Japan
  1130. </option><option value="Jordan">
  1131. Jordan
  1132. </option><option value="Kenya">
  1133. Kenya
  1134. </option><option value="Korea">
  1135. Korea, Republic Of (South)
  1136. </option><option value="Kuwait">
  1137. Kuwait
  1138. </option><option value="Lebanon">
  1139. Lebanon
  1140. </option><option value="Lesotho">
  1141. Lesotho
  1142. </option><option value="Liberia">
  1143. Liberia
  1144. </option><option value="Libya">
  1145. Libya
  1146. </option><option value="Malaysia">
  1147. Malaysia
  1148. </option><option value="Mexico">
  1149. Mexico
  1150. </option><option value="Monaco">
  1151. Monaco
  1152. </option><option value="Mongolia">
  1153. Mongolia
  1154. </option><option value="Morocco">
  1155. Morocco
  1156. </option><option value="Mozambique">
  1157. Mozambique
  1158. </option><option value="Nepal">
  1159. Nepal
  1160. </option><option value=" New Zealand">
  1161. New Zealand
  1162. </option><option value="Norway">
  1163. Norway
  1164. </option><option value="Oman">
  1165. Oman
  1166. </option><option value="Pakistan">
  1167. Pakistan
  1168. </option><option value="Palestinian">
  1169. Palestinian Autho.Gaza/W Bank
  1170. </option><option value="Panama">
  1171. Panama, Republic of
  1172. </option><option value="Philippines">
  1173. Philippines
  1174. </option><option value="Poland">
  1175. Poland
  1176. </option><option value="Qatar">
  1177. Qatar
  1178. </option><option value="Romania">
  1179. Romania
  1180. </option><option value="Russia">
  1181. Russia
  1182. </option><option value="Saint Lucia">
  1183. Saint Lucia
  1184. </option><option value="Samoa">
  1185. Samoa, American
  1186. </option><option value="Saudi Arabia">
  1187. Saudi Arabia
  1188. </option><option value="Singapore">
  1189. Singapore
  1190. </option><option value="South Sudan">
  1191. South Sudan, Republic of
  1192. </option><option value="Spain">
  1193. Spain
  1194. </option><option value="Sri Lanka">
  1195. Sri Lanka
  1196. </option><option value="Sudan">
  1197. Sudan, Republic of
  1198. </option><option value="Swaziland">
  1199. Swaziland
  1200. </option><option value="Sweden">
  1201. Sweden
  1202. </option><option value="Switzerland">
  1203. Switzerland
  1204. </option><option value="Syria">
  1205. Syria
  1206. </option><option value="Taiwan">
  1207. Taiwan
  1208. </option><option value="Tajikistan">
  1209. Tajikistan
  1210. </option><option value="Tanzania">
  1211. Tanzania, United Republic Of
  1212. </option><option value="Thailand">
  1213. Thailand
  1214. </option><option value="Togolese">
  1215. Togolese Republic
  1216. </option><option value="Tonga">
  1217. Tonga
  1218. </option><option value="Trinidad">
  1219. Trinidad &amp; Tobago, Republic of
  1220. </option><option value="Tunisia">
  1221. Tunisia
  1222. </option><option value="Turkey">
  1223. Turkey
  1224. </option><option value="Turkmenistan">
  1225. Turkmenistan
  1226. </option><option value="Tuvalu">
  1227. Tuvalu
  1228. </option><option value="United Arab Emirates">
  1229. United Arab Emirates
  1230. </option><option value=" United States of America">
  1231. United States of America
  1232. </option><option value="Uruguay">
  1233. Uruguay
  1234. </option><option value="Uzbekistan">
  1235. Uzbekistan
  1236. </option><option value="Vanuatu">
  1237. Vanuatu
  1238. </option><option value="Venezuela">
  1239. Venezuela
  1240. </option><option value="Western Sahara">
  1241. Western Sahara
  1242. </option><option value="Yemen">
  1243. Yemen, Republic of
  1244. </option><option value="Zambia">
  1245. Zambia
  1246. </option><option value="Zimbabwe">
  1247. Zimbabwe
  1248. </option>
  1249. </select>
  1250. </div>
  1251. </div>
  1252. </div>
  1253. <div class="control-group form-field">
  1254. <label class="control-label">
  1255. City of birth
  1256. </label>
  1257. <div class="controls">
  1258. <div class="input-append">
  1259. <input type="text" name="pcityofbirth" required="required">
  1260. </div>
  1261. </div>
  1262. </div>
  1263. <div class="control-group form-field">
  1264. <label class="control-label">
  1265. Are you a citizen of a country/territory other than the one on your passport?
  1266. </label>
  1267. <div class="controls">
  1268. <div class="input-append">
  1269. <select name="hasOtherCitizenship" id="hasOtherCitizenship" required="required">
  1270. <option value="Not selected">
  1271. Select
  1272. </option>
  1273. <option value="Yes">
  1274. Yes
  1275. </option>
  1276. <option value="No">
  1277. No
  1278. </option>
  1279. </select>
  1280. </div>
  1281. </div>
  1282. </div>
  1283.  
  1284.  
  1285. <div class="control-group form-field" id="CitizenshipsInfoCon">
  1286. <label class="control-label">
  1287. Citizenships Information
  1288. </label>
  1289. <div class="controls">
  1290. <div class="input-append">
  1291. <select name="CitizenshipsInfo" id="CitizenshipsInfo" required="required">
  1292. <option value="Select">
  1293. Select
  1294. </option>
  1295. <option value="Afghanistan">
  1296. Afghanistan
  1297. </option><option value="Albania">
  1298. Albania
  1299. </option><option value="Algeria">
  1300. Algeria
  1301. </option><option value="Andorra">
  1302. Andorra
  1303. </option><option value="Angola">
  1304. Angola
  1305. </option><option value="Antigua">
  1306. Antigua And Barbuda
  1307. </option><option value="Argentina">
  1308. Argentina
  1309. </option><option value="Armenia">
  1310. Armenia
  1311. </option><option value="Australia">
  1312. Australia
  1313. </option><option value="Austria">
  1314. Austria
  1315. </option><option value="Azerbaijan">
  1316. Azerbaijan
  1317. </option><option value="Bahamas">
  1318. Bahamas, Commonwealth of the
  1319. </option><option value="Bahrain">
  1320. Bahrain
  1321. </option><option value="Bangladesh">
  1322. Bangladesh
  1323. </option><option value="Barbados">
  1324. Barbados
  1325. </option><option value="Belarus">
  1326. Belarus
  1327. </option><option value="Belgium">
  1328. Belgium
  1329. </option><option value="Belize">
  1330. Belize
  1331. </option><option value="Benin">
  1332. Benin, Republic of
  1333. </option><option value="Bhutan">
  1334. Bhutan
  1335. </option><option value="Bolivia">
  1336. Bolivia
  1337. </option><option value="Bosnia and Herzegovina">
  1338. Bosnia and Herzegovina
  1339. </option><option value="Botswana">
  1340. Botswana, Republic Of
  1341. </option><option value="Brazil">
  1342. Brazil
  1343. </option><option value="British Citizen">
  1344. British Citizen
  1345. </option><option value="British National Overseas">
  1346. British National Overseas
  1347. </option><option value="British Overseas Citizen">
  1348. British Overseas Citizen
  1349. </option><option value="Brunei">
  1350. Brunei
  1351. </option><option value="Bulgaria">
  1352. Bulgaria
  1353. </option><option value="Burkina Faso">
  1354. Burkina Faso
  1355. </option><option value="Burundi">
  1356. Burundi
  1357. </option><option value="Cambodia">
  1358. Cambodia
  1359. </option><option value="Cameroon">
  1360. Cameroon, Republic of
  1361. </option><option value="Canada">
  1362. Canada
  1363. </option><option value="Cape Verde">
  1364. Cape Verde Islands
  1365. </option><option value="Central African">
  1366. Central African Republic
  1367. </option><option value="Chad, Republic Of">
  1368. Chad, Republic Of
  1369. </option>
  1370. <option value="China">
  1371. China, People's Republic of
  1372. </option><option value="Colombia">
  1373. Colombia
  1374. </option><option value="Comoros">
  1375. Comoros
  1376. </option><option value="Costa Rica">
  1377. Costa Rica
  1378. </option><option value="Cote d'Ivoire">
  1379. Cote d'Ivoire, Republic of
  1380. </option><option value="Croatia">
  1381. Croatia
  1382. </option><option value="Cuba">
  1383. Cuba
  1384. </option><option value="Cyprus">
  1385. Cyprus
  1386. </option><option value="Czech Republic">
  1387. Czech Republic
  1388. </option><option value="Denmark">
  1389. Denmark
  1390. </option><option value="Djibouti, Republic of">
  1391. Djibouti, Republic of
  1392. </option><option value="Dominica">
  1393. Dominica, Commonwealth of
  1394. </option><option value="Dominican">
  1395. Dominican Republic
  1396. </option><option value="DPR Korea">
  1397. DPR Korea (North)
  1398. </option><option value="East Timor">
  1399. East Timor
  1400. </option><option value=" Ecuador">
  1401. Ecuador
  1402. </option><option value="Egypt">
  1403. Egypt
  1404. </option><option value="El Salvador">
  1405. El Salvador
  1406. </option><option value="Eritrea">
  1407. Eritrea
  1408. </option><option value="Estonia">
  1409. Estonia
  1410. </option><option value="Ethiopia">
  1411. Ethiopia
  1412. </option><option value="Federated States">
  1413. Federated States of Micronesia
  1414. </option><option value="Fiji">
  1415. Fiji
  1416. </option><option value="Finland">
  1417. Finland
  1418. </option><option value="France">
  1419. France
  1420. </option><option value="FYR Macedonia">
  1421. FYR Macedonia
  1422. </option><option value="Gabonese">
  1423. Gabonese Republic
  1424. </option><option value="Gambia">
  1425. Gambia
  1426. </option><option value="Georgia">
  1427. Georgia
  1428. </option><option value="Germany">
  1429. Germany, Federal Republic Of
  1430. </option><option value="Ghana">
  1431. Ghana
  1432. </option><option value="Greece">
  1433. Greece
  1434. </option><option value="Grenada">
  1435. Grenada
  1436. </option><option value="Guatemala">
  1437. Guatemala
  1438. </option><option value="Haiti">
  1439. Haiti
  1440. </option><option value="Hong Kong SAR">
  1441. Hong Kong SAR
  1442. </option><option value="Hungary">
  1443. Hungary
  1444. </option><option value="Iceland">
  1445. Iceland
  1446. </option><option value="India">
  1447. India
  1448. </option><option value="Indonesia">
  1449. Indonesia, Republic of
  1450. </option><option value="Iran">
  1451. Iran
  1452. </option><option value="Iraq">
  1453. Iraq
  1454. </option><option value="Ireland">
  1455. Ireland, Republic Of
  1456. </option><option value="Israel">
  1457. Israel
  1458. </option><option value="Italy">
  1459. Italy
  1460. </option><option value="Jamaica">
  1461. Jamaica
  1462. </option><option value="Japan">
  1463. Japan
  1464. </option><option value="Jordan">
  1465. Jordan
  1466. </option><option value="Kenya">
  1467. Kenya
  1468. </option><option value="Korea">
  1469. Korea, Republic Of (South)
  1470. </option><option value="Kuwait">
  1471. Kuwait
  1472. </option><option value="Lebanon">
  1473. Lebanon
  1474. </option><option value="Lesotho">
  1475. Lesotho
  1476. </option><option value="Liberia">
  1477. Liberia
  1478. </option><option value="Libya">
  1479. Libya
  1480. </option><option value="Malaysia">
  1481. Malaysia
  1482. </option><option value="Mexico">
  1483. Mexico
  1484. </option><option value="Monaco">
  1485. Monaco
  1486. </option><option value="Mongolia">
  1487. Mongolia
  1488. </option><option value="Morocco">
  1489. Morocco
  1490. </option><option value="Mozambique">
  1491. Mozambique
  1492. </option><option value="Nepal">
  1493. Nepal
  1494. </option><option value=" New Zealand">
  1495. New Zealand
  1496. </option><option value="Norway">
  1497. Norway
  1498. </option><option value="Oman">
  1499. Oman
  1500. </option><option value="Pakistan">
  1501. Pakistan
  1502. </option><option value="Palestinian">
  1503. Palestinian Autho.Gaza/W Bank
  1504. </option><option value="Panama">
  1505. Panama, Republic of
  1506. </option><option value="Philippines">
  1507. Philippines
  1508. </option><option value="Poland">
  1509. Poland
  1510. </option><option value="Qatar">
  1511. Qatar
  1512. </option><option value="Romania">
  1513. Romania
  1514. </option><option value="Russia">
  1515. Russia
  1516. </option><option value="Saint Lucia">
  1517. Saint Lucia
  1518. </option><option value="Samoa">
  1519. Samoa, American
  1520. </option><option value="Saudi Arabia">
  1521. Saudi Arabia
  1522. </option><option value="Singapore">
  1523. Singapore
  1524. </option><option value="South Sudan">
  1525. South Sudan, Republic of
  1526. </option><option value="Spain">
  1527. Spain
  1528. </option><option value="Sri Lanka">
  1529. Sri Lanka
  1530. </option><option value="Sudan">
  1531. Sudan, Republic of
  1532. </option><option value="Swaziland">
  1533. Swaziland
  1534. </option><option value="Sweden">
  1535. Sweden
  1536. </option><option value="Switzerland">
  1537. Switzerland
  1538. </option><option value="Syria">
  1539. Syria
  1540. </option><option value="Taiwan">
  1541. Taiwan
  1542. </option><option value="Tajikistan">
  1543. Tajikistan
  1544. </option><option value="Tanzania">
  1545. Tanzania, United Republic Of
  1546. </option><option value="Thailand">
  1547. Thailand
  1548. </option><option value="Togolese">
  1549. Togolese Republic
  1550. </option><option value="Tonga">
  1551. Tonga
  1552. </option><option value="Trinidad">
  1553. Trinidad &amp; Tobago, Republic of
  1554. </option><option value="Tunisia">
  1555. Tunisia
  1556. </option><option value="Turkey">
  1557. Turkey
  1558. </option><option value="Turkmenistan">
  1559. Turkmenistan
  1560. </option><option value="Tuvalu">
  1561. Tuvalu
  1562. </option><option value="United Arab Emirates">
  1563. United Arab Emirates
  1564. </option><option value=" United States of America">
  1565. United States of America
  1566. </option><option value="Uruguay">
  1567. Uruguay
  1568. </option><option value="Uzbekistan">
  1569. Uzbekistan
  1570. </option><option value="Vanuatu">
  1571. Vanuatu
  1572. </option><option value="Venezuela">
  1573. Venezuela
  1574. </option><option value="Western Sahara">
  1575. Western Sahara
  1576. </option><option value="Yemen">
  1577. Yemen, Republic of
  1578. </option><option value="Zambia">
  1579. Zambia
  1580. </option><option value="Zimbabwe">
  1581. Zimbabwe
  1582. </option>
  1583. </select>
  1584. </div>
  1585. </div>
  1586. </div>
  1587. <div class="control-group form-field">
  1588. <label class="control-label">
  1589. Gender
  1590. </label>
  1591. <div class="controls">
  1592. <div class="input-append">
  1593. <select name="papplyGender" required="required">
  1594. <option value="Not Selected">
  1595. Select
  1596. </option>
  1597. <option value="Female">
  1598. Female
  1599. </option><option value="Male">
  1600. Male
  1601. </option><option value="Other">
  1602. Other
  1603. </option>
  1604. </select>
  1605. </div>
  1606. </div>
  1607. </div>
  1608.  
  1609. <div class="control-group form-field">
  1610. <label class="control-label">
  1611. Marital status
  1612. </label>
  1613. <div class="controls">
  1614. <div class="input-append">
  1615. <select name="maritalStatus" required="required">
  1616. <option value="Not Selected" disabled="" selected="" style="display: none;" class="">Please select</option>
  1617. <option value="Married">Married</option>
  1618. <option value="Legally Separated">Legally Separated</option>
  1619. <option value="Divorced">Divorced</option>
  1620. <option value="Annulled Marriage">Annulled Marriage</option>
  1621. <option value="Widowed">Widowed</option>
  1622. <option value="Common-Law">Common-Law</option>
  1623. <option value="Never Married/Single">Never Married/Single</option>
  1624. </select>
  1625. </div>
  1626. </div>
  1627. </div>
  1628.  
  1629. <div class="control-group form-field">
  1630. <label class="control-label">
  1631. Have you previously applied to enter or remain in Canada? Select YES if, in the past, you submitted an application to come to Canada, such as a study permit, work permit or visitor visa.
  1632. </label>
  1633. <div class="controls">
  1634. <div class="input-append">
  1635. <select name="phasPreviouslyAppliedToCanada" id="hasPreviouslyApplied" required="required">
  1636. <option value="Select">
  1637. Select
  1638. </option>
  1639. <option value="Yes">
  1640. Yes
  1641. </option>
  1642. <option value="No">
  1643. No
  1644. </option>
  1645. </select>
  1646. </div>
  1647. </div>
  1648. </div>
  1649. <div class="control-group form-field" id="UICnumber">
  1650. <label class="control-label">
  1651. Unique client identifier (UCI) / Previous Canadian visa or permit number
  1652. </label>
  1653. <div class="controls">
  1654. <div class="input-append">
  1655. <input type="text" name="UICnuumb" />
  1656. </div>
  1657. </div>
  1658. </div>
  1659.  
  1660.  
  1661. <div class="control-group form-field">
  1662. <label class="control-label">
  1663. Funds available for travel to Canada
  1664. </label>
  1665. <div class="controls">
  1666. <div class="input-append">
  1667. <select name="pavailableFunds" required="required">
  1668. <option value="Not Selected">
  1669. Select
  1670. </option>
  1671. <option value="$0">
  1672. $0
  1673. </option><option value="1 - $999">
  1674. $1 - $999
  1675. </option><option value="$1,000 - $2,999">
  1676. $1,000 - $2,999
  1677. </option><option value="$3,000 - $4,999">
  1678. $3,000 - $4,999
  1679. </option><option value="$5,000 - $9,999">
  1680. $5,000 - $9,999
  1681. </option><option value="$10,000 - $49,999">
  1682. $10,000 - $49,999
  1683. </option><option value="$50,000 and more">
  1684. $50,000 and more
  1685. </option>
  1686. </select>
  1687. </div>
  1688. </div>
  1689. </div>
  1690. <div class="control-group form-field">
  1691. <label class="control-label">
  1692. Passport number
  1693. </label>
  1694. <div class="controls">
  1695. <div class="input-append">
  1696. <input type="text" id="ppassportNumber" name="ppassportNumber" maxlength="30" required="required">
  1697. </div>
  1698. </div>
  1699. </div>
  1700. <div class="control-group form-field">
  1701. <label class="control-label">
  1702. Country/territory of issue
  1703. </label>
  1704. <div class="controls">
  1705. <div class="input-append">
  1706. <select name="pcountryOfIssuance" required="required">
  1707. <option value="Not Selected">
  1708. Select
  1709. </option>
  1710. <option value="Afghanistan">
  1711. Afghanistan
  1712. </option><option value="Albania">
  1713. Albania
  1714. </option><option value="Algeria">
  1715. Algeria
  1716. </option><option value="Andorra">
  1717. Andorra
  1718. </option><option value="Angola">
  1719. Angola
  1720. </option><option value="Antigua">
  1721. Antigua And Barbuda
  1722. </option><option value="Argentina">
  1723. Argentina
  1724. </option><option value="Armenia">
  1725. Armenia
  1726. </option><option value="Australia">
  1727. Australia
  1728. </option><option value="Austria">
  1729. Austria
  1730. </option><option value="Azerbaijan">
  1731. Azerbaijan
  1732. </option><option value="Bahamas">
  1733. Bahamas, Commonwealth of the
  1734. </option><option value="Bahrain">
  1735. Bahrain
  1736. </option><option value="Bangladesh">
  1737. Bangladesh
  1738. </option><option value="Barbados">
  1739. Barbados
  1740. </option><option value="Belarus">
  1741. Belarus
  1742. </option><option value="Belgium">
  1743. Belgium
  1744. </option><option value="Belize">
  1745. Belize
  1746. </option><option value="Benin">
  1747. Benin, Republic of
  1748. </option><option value="Bhutan">
  1749. Bhutan
  1750. </option><option value="Bolivia">
  1751. Bolivia
  1752. </option><option value="Bosnia and Herzegovina">
  1753. Bosnia and Herzegovina
  1754. </option><option value="Botswana">
  1755. Botswana, Republic Of
  1756. </option><option value="Brazil">
  1757. Brazil
  1758. </option><option value="British Citizen">
  1759. British Citizen
  1760. </option><option value="British National Overseas">
  1761. British National Overseas
  1762. </option><option value="British Overseas Citizen">
  1763. British Overseas Citizen
  1764. </option><option value="Brunei">
  1765. Brunei
  1766. </option><option value="Bulgaria">
  1767. Bulgaria
  1768. </option><option value="Burkina Faso">
  1769. Burkina Faso
  1770. </option><option value="Burundi">
  1771. Burundi
  1772. </option><option value="Cambodia">
  1773. Cambodia
  1774. </option><option value="Cameroon">
  1775. Cameroon, Republic of
  1776. </option><option value="Canada">
  1777. Canada
  1778. </option><option value="Cape Verde">
  1779. Cape Verde Islands
  1780. </option><option value="Central African">
  1781. Central African Republic
  1782. </option><option value="Chad, Republic Of">
  1783. Chad, Republic Of
  1784. </option>
  1785. <option value="China">
  1786. China, People's Republic of
  1787. </option><option value="Colombia">
  1788. Colombia
  1789. </option><option value="Comoros">
  1790. Comoros
  1791. </option><option value="Costa Rica">
  1792. Costa Rica
  1793. </option><option value="Cote d'Ivoire">
  1794. Cote d'Ivoire, Republic of
  1795. </option><option value="Croatia">
  1796. Croatia
  1797. </option><option value="Cuba">
  1798. Cuba
  1799. </option><option value="Cyprus">
  1800. Cyprus
  1801. </option><option value="Czech Republic">
  1802. Czech Republic
  1803. </option><option value="Denmark">
  1804. Denmark
  1805. </option><option value="Djibouti, Republic of">
  1806. Djibouti, Republic of
  1807. </option><option value="Dominica">
  1808. Dominica, Commonwealth of
  1809. </option><option value="Dominican">
  1810. Dominican Republic
  1811. </option><option value="DPR Korea">
  1812. DPR Korea (North)
  1813. </option><option value="East Timor">
  1814. East Timor
  1815. </option><option value=" Ecuador">
  1816. Ecuador
  1817. </option><option value="Egypt">
  1818. Egypt
  1819. </option><option value="El Salvador">
  1820. El Salvador
  1821. </option><option value="Eritrea">
  1822. Eritrea
  1823. </option><option value="Estonia">
  1824. Estonia
  1825. </option><option value="Ethiopia">
  1826. Ethiopia
  1827. </option><option value="Federated States">
  1828. Federated States of Micronesia
  1829. </option><option value="Fiji">
  1830. Fiji
  1831. </option><option value="Finland">
  1832. Finland
  1833. </option><option value="France">
  1834. France
  1835. </option><option value="FYR Macedonia">
  1836. FYR Macedonia
  1837. </option><option value="Gabonese">
  1838. Gabonese Republic
  1839. </option><option value="Gambia">
  1840. Gambia
  1841. </option><option value="Georgia">
  1842. Georgia
  1843. </option><option value="Germany">
  1844. Germany, Federal Republic Of
  1845. </option><option value="Ghana">
  1846. Ghana
  1847. </option><option value="Greece">
  1848. Greece
  1849. </option><option value="Grenada">
  1850. Grenada
  1851. </option><option value="Guatemala">
  1852. Guatemala
  1853. </option><option value="Haiti">
  1854. Haiti
  1855. </option><option value="Hong Kong SAR">
  1856. Hong Kong SAR
  1857. </option><option value="Hungary">
  1858. Hungary
  1859. </option><option value="Iceland">
  1860. Iceland
  1861. </option><option value="India">
  1862. India
  1863. </option><option value="Indonesia">
  1864. Indonesia, Republic of
  1865. </option><option value="Iran">
  1866. Iran
  1867. </option><option value="Iraq">
  1868. Iraq
  1869. </option><option value="Ireland">
  1870. Ireland, Republic Of
  1871. </option><option value="Israel">
  1872. Israel
  1873. </option><option value="Italy">
  1874. Italy
  1875. </option><option value="Jamaica">
  1876. Jamaica
  1877. </option><option value="Japan">
  1878. Japan
  1879. </option><option value="Jordan">
  1880. Jordan
  1881. </option><option value="Kenya">
  1882. Kenya
  1883. </option><option value="Korea">
  1884. Korea, Republic Of (South)
  1885. </option><option value="Kuwait">
  1886. Kuwait
  1887. </option><option value="Lebanon">
  1888. Lebanon
  1889. </option><option value="Lesotho">
  1890. Lesotho
  1891. </option><option value="Liberia">
  1892. Liberia
  1893. </option><option value="Libya">
  1894. Libya
  1895. </option><option value="Malaysia">
  1896. Malaysia
  1897. </option><option value="Mexico">
  1898. Mexico
  1899. </option><option value="Monaco">
  1900. Monaco
  1901. </option><option value="Mongolia">
  1902. Mongolia
  1903. </option><option value="Morocco">
  1904. Morocco
  1905. </option><option value="Mozambique">
  1906. Mozambique
  1907. </option><option value="Nepal">
  1908. Nepal
  1909. </option><option value=" New Zealand">
  1910. New Zealand
  1911. </option><option value="Norway">
  1912. Norway
  1913. </option><option value="Oman">
  1914. Oman
  1915. </option><option value="Pakistan">
  1916. Pakistan
  1917. </option><option value="Palestinian">
  1918. Palestinian Autho.Gaza/W Bank
  1919. </option><option value="Panama">
  1920. Panama, Republic of
  1921. </option><option value="Philippines">
  1922. Philippines
  1923. </option><option value="Poland">
  1924. Poland
  1925. </option><option value="Qatar">
  1926. Qatar
  1927. </option><option value="Romania">
  1928. Romania
  1929. </option><option value="Russia">
  1930. Russia
  1931. </option><option value="Saint Lucia">
  1932. Saint Lucia
  1933. </option><option value="Samoa">
  1934. Samoa, American
  1935. </option><option value="Saudi Arabia">
  1936. Saudi Arabia
  1937. </option><option value="Singapore">
  1938. Singapore
  1939. </option><option value="South Sudan">
  1940. South Sudan, Republic of
  1941. </option><option value="Spain">
  1942. Spain
  1943. </option><option value="Sri Lanka">
  1944. Sri Lanka
  1945. </option><option value="Sudan">
  1946. Sudan, Republic of
  1947. </option><option value="Swaziland">
  1948. Swaziland
  1949. </option><option value="Sweden">
  1950. Sweden
  1951. </option><option value="Switzerland">
  1952. Switzerland
  1953. </option><option value="Syria">
  1954. Syria
  1955. </option><option value="Taiwan">
  1956. Taiwan
  1957. </option><option value="Tajikistan">
  1958. Tajikistan
  1959. </option><option value="Tanzania">
  1960. Tanzania, United Republic Of
  1961. </option><option value="Thailand">
  1962. Thailand
  1963. </option><option value="Togolese">
  1964. Togolese Republic
  1965. </option><option value="Tonga">
  1966. Tonga
  1967. </option><option value="Trinidad">
  1968. Trinidad &amp; Tobago, Republic of
  1969. </option><option value="Tunisia">
  1970. Tunisia
  1971. </option><option value="Turkey">
  1972. Turkey
  1973. </option><option value="Turkmenistan">
  1974. Turkmenistan
  1975. </option><option value="Tuvalu">
  1976. Tuvalu
  1977. </option><option value="United Arab Emirates">
  1978. United Arab Emirates
  1979. </option><option value=" United States of America">
  1980. United States of America
  1981. </option><option value="Uruguay">
  1982. Uruguay
  1983. </option><option value="Uzbekistan">
  1984. Uzbekistan
  1985. </option><option value="Vanuatu">
  1986. Vanuatu
  1987. </option><option value="Venezuela">
  1988. Venezuela
  1989. </option><option value="Western Sahara">
  1990. Western Sahara
  1991. </option><option value="Yemen">
  1992. Yemen, Republic of
  1993. </option><option value="Zambia">
  1994. Zambia
  1995. </option><option value="Zimbabwe">
  1996. Zimbabwe
  1997. </option>
  1998. </select>
  1999. </div>
  2000. </div>
  2001. </div>
  2002. <div class="control-group form-field">
  2003. <label class="control-label">
  2004. Issue date
  2005. </label>
  2006. <div class="controls">
  2007. <div class="input-append">
  2008. <input type="date" name="pissueDate" required="required" />
  2009. </div>
  2010. </div>
  2011. </div>
  2012. <div class="control-group form-field">
  2013. <label class="control-label">
  2014. Expiry date
  2015. </label>
  2016. <div class="controls">
  2017. <div class="input-append">
  2018. <input type="date" name="pexpiryDat" required="required" />
  2019. </div>
  2020. </div>
  2021. </div>
  2022. </div>
  2023. <div>
  2024. <div id="employment-information">
  2025. <h2>
  2026. Employment information
  2027. </h2>
  2028. <div class="control-group form-field">
  2029. <label class="control-label">
  2030. <b>Occupation</b><br>
  2031. Select the option that best describes your current employment situation.
  2032. </label>
  2033. <div class="controls">
  2034. <div class="input-append">
  2035. <select name="employmentOccupation" id="employmentOccupation" required="required">
  2036. <option value="Not Selected" disabled="" selected="" style="display: none;" class="">Please select</option>
  2037. <option value="Art, culture, recreation and sport occupations">Art, culture, recreation and sport occupations</option>
  2038. <option value="Business, finance and administration occupations">Business, finance and administration occupations</option>
  2039. <option value="Education, law and social, community and government services occupations">Education, law and social, community and government services occupations</option>
  2040. <option value="Health occupations">Health occupations</option>
  2041. <option value="Homemaker">Homemaker</option>
  2042. <option value="Management occupations">Management occupations</option>
  2043. <option value="Manufacturing and utilities occupations">Manufacturing and utilities occupations</option>
  2044. <option value="Military/armed forces">Military/armed forces</option>
  2045. <option value="Natural and applied sciences and related occupations">Natural and applied sciences and related occupations</option>
  2046. <option value="Natural resources, agriculture and related production occupations">Natural resources, agriculture and related production occupations</option>
  2047. <option value="Retired">Retired</option>
  2048. <option value="Sales and service occupations">Sales and service occupations</option>
  2049. <option value="Student">Student</option>
  2050. <option value="Trades, transport and equipment operators and related occupations">Trades, transport and equipment operators and related occupations</option>
  2051. <option value="Unemployed">Unemployed</option>
  2052. </select>
  2053. </div>
  2054. </div>
  2055. </div>
  2056. <div id="employment-details" style="display: none;">
  2057. <div class="control-group form-field" id="employmentTitleBlock">
  2058. <label class="control-label">
  2059. <b>Job title</b><br>
  2060. Select the option that best describes your job.
  2061. </label>
  2062. <div class="controls">
  2063. <div class="input-append">
  2064. <select name="employmentTitle" id="employmentTitle" required="required">
  2065. <option value="Not Selected" disabled="" selected="" style="display: none;" class="">Please select</option>
  2066.  
  2067. <!-- Art, culture, recreation and sport occupations -->
  2068. <option class="emp-art" value="Announcers and other performers">Announcers and other performers</option>
  2069. <option class="emp-art" value="Athletes, coaches, referees and related occupations">Athletes, coaches, referees and related occupations</option>
  2070. <option class="emp-art" value="Creative and performing artists">Creative and performing artists</option>
  2071. <option class="emp-art" value="Creative designers and craftspersons">Creative designers and craftspersons</option>
  2072. <option class="emp-art" value="Librarian, archivist, conservator or curator">Librarian, archivist, conservator or curator</option>
  2073. <option class="emp-art" value="Photographers, graphic arts technicians, technical and coordinating occupations in motion pictures, broadcasting and the performing arts">Photographers, graphic arts technicians, technical and coordinating occupations in motion pictures, broadcasting and the performing arts</option>
  2074. <option class="emp-art" value="Technical occupations in libraries, public archives, museums and art galleries">Technical occupations in libraries, public archives, museums and art galleries</option>
  2075. <option class="emp-art" value="Writing, translating and related communications professionals">Writing, translating and related communications professionals</option>
  2076.  
  2077. <!-- Business, finance and administration occupations -->
  2078. <option class="emp-business" value="Administrative and regulatory occupations">Administrative and regulatory occupations</option>
  2079. <option class="emp-business" value="Administrative services supervisors">Administrative services supervisors</option>
  2080. <option class="emp-business" value="Auditors, accountants and investment professionals">Auditors, accountants and investment professionals</option>
  2081. <option class="emp-business" value="Court reporters, transcriptionists, records management technicians and statistical officers">Court reporters, transcriptionists, records management technicians and statistical officers</option>
  2082. <option class="emp-business" value="Finance, insurance and related business administrative occupations">Finance, insurance and related business administrative occupations</option>
  2083. <option class="emp-business" value="Financial, insurance and related administrative support workers">Financial, insurance and related administrative support workers</option>
  2084. <option class="emp-business" value="General office workers">General office workers</option>
  2085. <option class="emp-business" value="Human resources and business service professionals">Human resources and business service professionals</option>
  2086. <option class="emp-business" value="Library, correspondence and other clerks">Library, correspondence and other clerks</option>
  2087. <option class="emp-business" value="Mail and message distribution occupations">Mail and message distribution occupations</option>
  2088. <option class="emp-business" value="Office administrative assistants - general, legal and medical">Office administrative assistants - general, legal and medical</option>
  2089. <option class="emp-business" value="Office equipment operators">Office equipment operators</option>
  2090. <option class="emp-business" value="Supply chain logistics, tracking and scheduling coordination occupations">Supply chain logistics, tracking and scheduling coordination occupations</option>
  2091.  
  2092. <!-- Education, law and social, community and government services occupations -->
  2093. <option class="emp-edu" value="College and other vocational instructors">College and other vocational instructors</option>
  2094. <option class="emp-edu" value="Home care providers and educational support occupations">Home care providers and educational support occupations</option>
  2095. <option class="emp-edu" value="Judges, lawyers and notaries">Judges, lawyers and notaries</option>
  2096. <option class="emp-edu" value="Legal and public protection support occupations">Legal and public protection support occupations</option>
  2097. <option class="emp-edu" value="Occupations in front-line public protection services">Occupations in front-line public protection services</option>
  2098. <option class="emp-edu" value="Paraprofessional occupations in legal, social, community and education services">Paraprofessional occupations in legal, social, community and education services</option>
  2099. <option class="emp-edu" value="Policy and program researchers, consultants and officers">Policy and program researchers, consultants and officers</option>
  2100. <option class="emp-edu" value="Secondary and elementary school teachers and educational counsellors">Secondary and elementary school teachers and educational counsellors</option>
  2101. <option class="emp-edu" value="Social and community service professionals">Social and community service professionals</option>
  2102. <option class="emp-edu" value="University professors and post-secondary assistants">University professors and post-secondary assistants</option>
  2103.  
  2104. <!-- Health occupations -->
  2105. <option class="emp-heal" value="Assisting occupations in support of health services">Assisting occupations in support of health services</option>
  2106. <option class="emp-heal" value="Medical technologists and technicians">Medical technologists and technicians</option>
  2107. <option class="emp-heal" value="Optometrists, chiropractors, other health diagnosing and treating professionals">Optometrists, chiropractors, other health diagnosing and treating professionals</option>
  2108. <option class="emp-heal" value="Other technical occupations in health care">Other technical occupations in health care</option>
  2109. <option class="emp-heal" value="Pharmacists, dieticians and nutritionists">Pharmacists, dieticians and nutritionists</option>
  2110. <option class="emp-heal" value="Physicians, dentists and veterinarians">Physicians, dentists and veterinarians</option>
  2111. <option class="emp-heal" value="Professional occupations in nursing">Professional occupations in nursing</option>
  2112. <option class="emp-heal" value="Technical occupations in dental health care">Technical occupations in dental health care</option>
  2113. <option class="emp-heal" value="Therapy and assessment professionals">Therapy and assessment professionals</option>
  2114.  
  2115. <!-- Management occupations -->
  2116. <option class="emp-manag" value="Administrative services managers">Administrative services managers</option>
  2117. <option class="emp-manag" value="Corporate sales managers">Corporate sales managers</option>
  2118. <option class="emp-manag" value="Legislators and senior management, including political officials">Legislators and senior management, including political officials</option>
  2119. <option class="emp-manag" value="Managers in agriculture, horticulture and aquaculture">Managers in agriculture, horticulture and aquaculture</option>
  2120. <option class="emp-manag" value="Managers in art, culture, recreation and sport">Managers in art, culture, recreation and sport</option>
  2121. <option class="emp-manag" value="Managers in communication">Managers in communication</option>
  2122. <option class="emp-manag" value="Managers in construction, facility operation and maintenance">Managers in construction, facility operation and maintenance</option>
  2123. <option class="emp-manag" value="Managers in customer and personal services">Managers in customer and personal services</option>
  2124. <option class="emp-manag" value="Managers in education and social and community services">Managers in education and social and community services</option>
  2125. <option class="emp-manag" value="Managers in engineering, architecture, science and information systems">Managers in engineering, architecture, science and information systems</option>
  2126. <option class="emp-manag" value="Managers in financial and business services">Managers in financial and business services</option>
  2127. <option class="emp-manag" value="Managers in food service and accommodation">Managers in food service and accommodation</option>
  2128. <option class="emp-manag" value="Managers in health care">Managers in health care</option>
  2129. <option class="emp-manag" value="Managers in manufacturing and utilities">Managers in manufacturing and utilities</option>
  2130. <option class="emp-manag" value="Managers in natural resources production and fishing">Managers in natural resources production and fishing</option>
  2131. <option class="emp-manag" value="Managers in public administration">Managers in public administration</option>
  2132. <option class="emp-manag" value="Managers in public protection services">Managers in public protection services</option>
  2133. <option class="emp-manag" value="Managers in transportation">Managers in transportation</option>
  2134. <option class="emp-manag" value="Retail and wholesale trade managers">Retail and wholesale trade managers</option>
  2135.  
  2136. <!-- Manufacturing and utilities occupations -->
  2137. <option class="emp-manuf" value="Central control and process operators in processing and manufacturing">Central control and process operators in processing and manufacturing</option>
  2138. <option class="emp-manuf" value="Labourers in processing, manufacturing and utilities">Labourers in processing, manufacturing and utilities</option>
  2139. <option class="emp-manuf" value="Machine operators and related workers in chemical, plastic and rubber processing">Machine operators and related workers in chemical, plastic and rubber processing</option>
  2140. <option class="emp-manuf" value="Machine operators and related workers in food, beverage and associated products processing">Machine operators and related workers in food, beverage and associated products processing</option>
  2141. <option class="emp-manuf" value="Machine operators and related workers in mineral and metal products processing and manufacturing">Machine operators and related workers in mineral and metal products processing and manufacturing</option>
  2142. <option class="emp-manuf" value="Machine operators and related workers in pulp and paper production and wood processing and manufacturing">Machine operators and related workers in pulp and paper production and wood processing and manufacturing</option>
  2143. <option class="emp-manuf" value="Machine operators and related workers in textile, fabric, fur and leather products processing and manufacturing">Machine operators and related workers in textile, fabric, fur and leather products processing and manufacturing</option>
  2144. <option class="emp-manuf" value="Mechanical, electrical and electronics assemblers">Mechanical, electrical and electronics assemblers</option>
  2145. <option class="emp-manuf" value="Other assembly and related occupations">Other assembly and related occupations</option>
  2146. <option class="emp-manuf" value="Printing equipment operators and related occupations">Printing equipment operators and related occupations</option>
  2147. <option class="emp-manuf" value="Supervisors in assembly and fabrication">Supervisors in assembly and fabrication</option>
  2148. <option class="emp-manuf" value="Supervisors in processing and manufacturing occupations">Supervisors in processing and manufacturing occupations</option>
  2149. <option class="emp-manuf" value="Utilities equipment operators and controllers">Utilities equipment operators and controllers</option>
  2150.  
  2151. <!-- Military/armed forces -->
  2152. <option class="emp-army" value="Aerospace Control Officer">Aerospace Control Officer</option>
  2153. <option class="emp-army" value="Aerospace Control Operator">Aerospace Control Operator</option>
  2154. <option class="emp-army" value="Aerospace Engineering Officer">Aerospace Engineering Officer</option>
  2155. <option class="emp-army" value="Aerospace Telecommunication and Information Systems Technician">Aerospace Telecommunication and Information Systems Technician</option>
  2156. <option class="emp-army" value="Air Combat Systems Officer">Air Combat Systems Officer</option>
  2157. <option class="emp-army" value="Aircraft Structures Technician">Aircraft Structures Technician</option>
  2158. <option class="emp-army" value="Armour Officer">Armour Officer</option>
  2159. <option class="emp-army" value="Armoured Soldier">Armoured Soldier</option>
  2160. <option class="emp-army" value="Artillery Officer">Artillery Officer</option>
  2161. <option class="emp-army" value="Artillery Soldier - Field">Artillery Soldier - Field</option>
  2162. <option class="emp-army" value="Artillery Soldier / Air Defence">Artillery Soldier / Air Defence</option>
  2163. <option class="emp-army" value="Aviation Systems Technician">Aviation Systems Technician</option>
  2164. <option class="emp-army" value="Avionics Systems Technician">Avionics Systems Technician</option>
  2165. <option class="emp-army" value="Biomedical Electronics Technologist">Biomedical Electronics Technologist</option>
  2166. <option class="emp-army" value="Boatswain">Boatswain</option>
  2167. <option class="emp-army" value="Chaplain">Chaplain</option>
  2168. <option class="emp-army" value="Combat Engineer">Combat Engineer</option>
  2169. <option class="emp-army" value="Communications and Electronics Engineering (Air) Officer">Communications and Electronics Engineering (Air) Officer</option>
  2170. <option class="emp-army" value="Communicator Research Operator">Communicator Research Operator</option>
  2171. <option class="emp-army" value="Construction Technician">Construction Technician</option>
  2172. <option class="emp-army" value="Cook">Cook</option>
  2173. <option class="emp-army" value="Dental Office">Dental Officer</option>
  2174. <option class="emp-army" value="Electrical and Mechanical Engineering Officer">Electrical and Mechanical Engineering Officer</option>
  2175. <option class="emp-army" value="Electrical Distribution Technician">Electrical Distribution Technician</option>
  2176. <option class="emp-army" value="Electrical Generating Systems Technician">Electrical Generating Systems Technician</option>
  2177. <option class="emp-army" value="Engineering Officer">Engineering Officer</option>
  2178. <option class="emp-army" value="Fire Fighter">Fire Fighter</option>
  2179. <option class="emp-army" value="Geomatics Technician">Geomatics Technician</option>
  2180. <option class="emp-army" value="Health Care Administration Officer">Health Care Administration Officer</option>
  2181. <option class="emp-army" value="Imagery Technician">Imagery Technician</option>
  2182. <option class="emp-army" value="Infantry Officer">Infantry Officer</option>
  2183. <option class="emp-army" value=">Infantry Soldier">Infantry Soldier</option>
  2184. <option class="emp-army" value="Intelligence Officer, Naval Reserve">Intelligence Officer, Naval Reserve</option>
  2185. <option class="emp-army" value="Intelligence Operator">Intelligence Operator</option>
  2186. <option class="emp-army" value="Land Communications and Information Systems Technician">Land Communications and Information Systems Technician</option>
  2187. <option class="emp-army" value="Legal Officer">Legal Officer</option>
  2188. <option class="emp-army" value="Line Technician">Line Technician</option>
  2189. <option class="emp-army" value="Logistics (Support), Naval Reserve Officer">Logistics (Support), Naval Reserve Officer</option>
  2190. <option class="emp-army" value="Logistics Officer">Logistics Officer</option>
  2191. <option class="emp-army" value="Maritime Surface and Sub-surface Officer">Maritime Surface and Sub-surface Officer</option>
  2192. <option class="emp-army" value="Medical Officer">Medical Officer</option>
  2193. <option class="emp-army" value="Medical Technician">Medical Technician</option>
  2194. <option class="emp-army" value="Military Police">Military Police</option>
  2195. <option class="emp-army" value="Military Police Officer">Military Police Officer</option>
  2196. <option class="emp-army" value="Mobile Support Equipment Operator">Mobile Support Equipment Operator</option>
  2197. <option class="emp-army" value="Musician">Musician</option>
  2198. <option class="emp-army" value="Naval Combat Information Operator">Naval Combat Information Operator</option>
  2199. <option class="emp-army" value="Naval Communicator">Naval Communicator</option>
  2200. <option class="emp-army" value="Nursing Officer">Nursing Officer</option>
  2201. <option class="emp-army" value="Personnel Selection Officer">Personnel Selection Officer</option>
  2202. <option class="emp-army" value="Pharmacy Officer">Pharmacy Officer</option>
  2203. <option class="emp-army" value="Pilot">Pilot</option>
  2204. <option class="emp-army" value="Plumbing and Heating Technician">Plumbing and Heating Technician</option>
  2205. <option class="emp-army" value="Port Inspection Diver">Port Inspection Diver</option>
  2206. <option class="emp-army" value="Public Affairs Officer">Public Affairs Officer</option>
  2207. <option class="emp-army" value="Refrigeration and Mechanical Systems Technician">Refrigeration and Mechanical Systems Technician</option>
  2208. <option class="emp-army" value="Resource Management Support Clerk, Air Reserve">Resource Management Support Clerk, Air Reserve</option>
  2209. <option class="emp-army" value="Resource Management Support Clerk, Army Reserve">Resource Management Support Clerk, Army Reserve</option>
  2210. <option class="emp-army" value="Resource Management Support Clerk, Naval Reserve">Resource Management Support Clerk, Naval Reserve</option>
  2211. <option class="emp-army" value="Signal Operator">Signal Operator</option>
  2212. <option class="emp-army" value="Signals (Officer)">Signals (Officer)</option>
  2213. <option class="emp-army" value="Supply Technician, Air Reserve">Supply Technician, Air Reserve</option>
  2214. <option class="emp-army" value="Supply Technician, Army Reserve">Supply Technician, Army Reserve</option>
  2215. <option class="emp-army" value="Supply Technician, Naval Reserve">Supply Technician, Naval Reserve</option>
  2216. <option class="emp-army" value="Traffic Technician">Traffic Technician</option>
  2217. <option class="emp-army" value="Vehicle Technician, Army Reserve">Vehicle Technician, Army Reserve</option>
  2218. <option class="emp-army" value="Water, Fuels and Environmental Technician">Water, Fuels and Environmental Technician</option>
  2219. <option class="emp-army" value="Weapons Technician / Land">Weapons Technician / Land</option>
  2220.  
  2221. <!-- Natural and applied sciences and related occupations -->
  2222. <option class="emp-tech" value="Architects, urban planners and land surveyors">Architects, urban planners and land surveyors</option>
  2223. <option class="emp-tech" value="Civil, mechanical, electrical and chemical engineers">Civil, mechanical, electrical and chemical engineers</option>
  2224. <option class="emp-tech" value="Computer and information systems professionals">Computer and information systems professionals</option>
  2225. <option class="emp-tech" value="Life science professionals">Life science professionals</option>
  2226. <option class="emp-tech" value="Mathematicians, statisticians and actuaries">Mathematicians, statisticians and actuaries</option>
  2227. <option class="emp-tech" value="Other engineers">Other engineers</option>
  2228. <option class="emp-tech" value="Other technical inspectors and regulatory officers">Other technical inspectors and regulatory officers</option>
  2229. <option class="emp-tech" value="Physical science professionals">Physical science professionals</option>
  2230. <option class="emp-tech" value="Technical occupations in architecture, drafting, surveying, geomatics and meteorology">Technical occupations in architecture, drafting, surveying, geomatics and meteorology</option>
  2231. <option class="emp-tech" value="Technical occupations in civil, mechanical and industrial engineering">Technical occupations in civil, mechanical and industrial engineering</option>
  2232. <option class="emp-tech" value="Technical occupations in computer and information systems">Technical occupations in computer and information systems</option>
  2233. <option class="emp-tech" value="Technical occupations in electronics and electrical engineering">Technical occupations in electronics and electrical engineering</option>
  2234. <option class="emp-tech" value="Technical occupations in life sciences">Technical occupations in life sciences</option>
  2235. <option class="emp-tech" value="Technical occupations in physical science">Technical occupations in physical science</option>
  2236. <option class="emp-tech" value="Transportation officers and controllers">Transportation officers and controllers</option>
  2237.  
  2238. <!-- Natural resources, agriculture and related production occupations -->
  2239. <option class="emp-natur" value="Agriculture and horticulture workers">Agriculture and horticulture workers</option>
  2240. <option class="emp-natur" value="Contractors and supervisors in agriculture, horticulture and related operations and services">Contractors and supervisors in agriculture, horticulture and related operations and services</option>
  2241. <option class="emp-natur" value="Contractors and supervisors in mining, oil and gas">Contractors and supervisors in mining, oil and gas</option>
  2242. <option class="emp-natur" value="Fishing vessel masters and fishermen/fisherwomen">Fishing vessel masters and fishermen/fisherwomen</option>
  2243. <option class="emp-natur" value="Harvesting, landscaping and natural resources labourers">Harvesting, landscaping and natural resources labourers</option>
  2244. <option class="emp-natur" value="Logging and forestry workers">Logging and forestry workers</option>
  2245. <option class="emp-natur" value="Logging machinery operators">Logging machinery operators</option>
  2246. <option class="emp-natur" value="Mine service workers and operators in oil and gas drilling">Mine service workers and operators in oil and gas drilling</option>
  2247. <option class="emp-natur" value="Other workers in fishing and trapping and hunting occupations">Other workers in fishing and trapping and hunting occupations</option>
  2248. <option class="emp-natur" value="Supervisors, logging and forestry">Supervisors, logging and forestry</option>
  2249. <option class="emp-natur" value="Underground miners, oil and gas drillers and related occupations">Underground miners, oil and gas drillers and related occupations</option>
  2250.  
  2251. <!-- Sales and service occupations -->
  2252. <option class="emp-sale" value="Butchers and bakers">Butchers and bakers</option>
  2253. <option class="emp-sale" value="Cashiers">Cashiers</option>
  2254. <option class="emp-sale" value="Chefs and cooks">Chefs and cooks</option>
  2255. <option class="emp-sale" value="Cleaners">Cleaners</option>
  2256. <option class="emp-sale" value="Customer and information services representatives">Customer and information services representatives</option>
  2257. <option class="emp-sale" value="Food counter attendants, kitchen helpers and related support occupations">Food counter attendants, kitchen helpers and related support occupations</option>
  2258. <option class="emp-sale" value="Insurance, real estate and financial sales occupations">Insurance, real estate and financial sales occupations</option>
  2259. <option class="emp-sale" value="Occupations in food and beverage services">Occupations in food and beverage services</option>
  2260. <option class="emp-sale" value="Occupations in travel and accommodation">Occupations in travel and accommodation</option>
  2261. <option class="emp-sale" value="Other occupations in personal services">Other occupations in personal services</option>
  2262. <option class="emp-sale" value="Other sales support and related occupations">Other sales support and related occupations</option>
  2263. <option class="emp-sale" value="Other service support and related occupations">Other service support and related occupations</option>
  2264. <option class="emp-sale" value="Retail sales supervisors">Retail sales supervisors</option>
  2265. <option class="emp-sale" value="Retail salespersons">Retail salespersons</option>
  2266. <option class="emp-sale" value="Sales and account representatives">Sales and account representatives</option>
  2267. <option class="emp-sale" value="Security guards and related security service occupations">Security guards and related security service occupations</option>
  2268. <option class="emp-sale" value="Service supervisors">Service supervisors</option>
  2269. <option class="emp-sale" value="Specialized occupations in personal and customer services">Specialized occupations in personal and customer services</option>
  2270. <option class="emp-sale" value="Support occupations in accommodation, travel and amusement services">Support occupations in accommodation, travel and amusement services</option>
  2271. <option class="emp-sale" value="Technical sales specialists in wholesale trade and retail and wholesale buyers">Technical sales specialists in wholesale trade and retail and wholesale buyers</option>
  2272. <option class="emp-sale" value="Tourism and amusement services occupations">Tourism and amusement services occupations</option>
  2273.  
  2274. <!-- Trades, transport and equipment operators and related occupations -->
  2275. <option class="emp-oper" value="Automotive service technicians">Automotive service technicians</option>
  2276. <option class="emp-oper" value="Carpenters and cabinetmakers">Carpenters and cabinetmakers</option>
  2277. <option class="emp-oper" value="Contractors and supervisors in industrial, electrical and construction trades and related workers">Contractors and supervisors in industrial, electrical and construction trades and related workers</option>
  2278. <option class="emp-oper" value="Contractors and supervisors in maintenance trades and heavy equipment and transport operators">Contractors and supervisors in maintenance trades and heavy equipment and transport operators</option>
  2279. <option class="emp-oper" value="Crane operators, drillers and blasters">Crane operators, drillers and blasters</option>
  2280. <option class="emp-oper" value="Electrical trades and electrical power line and telecommunications workers">Electrical trades and electrical power line and telecommunications workers</option>
  2281. <option class="emp-oper" value="Heavy equipment operators">Heavy equipment operators</option>
  2282. <option class="emp-oper" value="Longshore workers and material handlers">Longshore workers and material handlers</option>
  2283. <option class="emp-oper" value="Machinery and transportation equipment mechanics">Machinery and transportation equipment mechanics</option>
  2284. <option class="emp-oper" value="Machining, metal forming, shaping and erecting trades">Machining, metal forming, shaping and erecting trades</option>
  2285. <option class="emp-oper" value="Masonry and plastering trades">Masonry and plastering trades</option>
  2286. <option class="emp-oper" value="Motor vehicle and transit drivers">Motor vehicle and transit drivers</option>
  2287. <option class="emp-oper" value="Other construction trades">Other construction trades</option>
  2288. <option class="emp-oper" value="Other installers, repairers and servicers">Other installers, repairers and servicers</option>
  2289. <option class="emp-oper" value="Other mechanics and related repairers">Other mechanics and related repairers</option>
  2290. <option class="emp-oper" value="Other transport equipment operators and related maintenance workers">Other transport equipment operators and related maintenance workers</option>
  2291. <option class="emp-oper" value="Plumbers, pipefitters and gas fitters">Plumbers, pipefitters and gas fitters</option>
  2292. <option class="emp-oper" value="Printing press operators, other trades and related occupations">Printing press operators, other trades and related occupations</option>
  2293. <option class="emp-oper" value="Public works and other labourers">Public works and other labourers</option>
  2294. <option class="emp-oper" value="Trades helpers and labourers">Trades helpers and labourers</option>
  2295. <option class="emp-oper" value="Train crew operating occupations">Train crew operating occupations</option>
  2296.  
  2297. </select>
  2298. </div>
  2299. </div>
  2300. </div>
  2301. <div class="control-group form-field">
  2302. <label class="control-label">
  2303. Please provide the name of company, employer, school or facility as applicable
  2304. </label>
  2305. <div class="controls">
  2306. <div class="input-append">
  2307. <input type="text" name="employmentName" id="employmentName" maxlength="255" >
  2308. </div>
  2309. </div>
  2310. </div>
  2311. <div class="control-group form-field">
  2312. <label class="control-label">
  2313. Country/territory
  2314. </label>
  2315. <div class="controls">
  2316. <div class="input-append">
  2317. <select name="employmentCountry" id="employmentCountry" >
  2318. <option value="Not Selected">
  2319. Select
  2320. </option>
  2321. <option value="Afghanistan">
  2322. Afghanistan
  2323. </option><option value="Albania">
  2324. Albania
  2325. </option><option value="Algeria">
  2326. Algeria
  2327. </option><option value="Andorra">
  2328. Andorra
  2329. </option><option value="Angola">
  2330. Angola
  2331. </option><option value="Antigua">
  2332. Antigua And Barbuda
  2333. </option><option value="Argentina">
  2334. Argentina
  2335. </option><option value="Armenia">
  2336. Armenia
  2337. </option><option value="Australia">
  2338. Australia
  2339. </option><option value="Austria">
  2340. Austria
  2341. </option><option value="Azerbaijan">
  2342. Azerbaijan
  2343. </option><option value="Bahamas">
  2344. Bahamas, Commonwealth of the
  2345. </option><option value="Bahrain">
  2346. Bahrain
  2347. </option><option value="Bangladesh">
  2348. Bangladesh
  2349. </option><option value="Barbados">
  2350. Barbados
  2351. </option><option value="Belarus">
  2352. Belarus
  2353. </option><option value="Belgium">
  2354. Belgium
  2355. </option><option value="Belize">
  2356. Belize
  2357. </option><option value="Benin">
  2358. Benin, Republic of
  2359. </option><option value="Bhutan">
  2360. Bhutan
  2361. </option><option value="Bolivia">
  2362. Bolivia
  2363. </option><option value="Bosnia and Herzegovina">
  2364. Bosnia and Herzegovina
  2365. </option><option value="Botswana">
  2366. Botswana, Republic Of
  2367. </option><option value="Brazil">
  2368. Brazil
  2369. </option><option value="British Citizen">
  2370. British Citizen
  2371. </option><option value="British National Overseas">
  2372. British National Overseas
  2373. </option><option value="British Overseas Citizen">
  2374. British Overseas Citizen
  2375. </option><option value="Brunei">
  2376. Brunei
  2377. </option><option value="Bulgaria">
  2378. Bulgaria
  2379. </option><option value="Burkina Faso">
  2380. Burkina Faso
  2381. </option><option value="Burundi">
  2382. Burundi
  2383. </option><option value="Cambodia">
  2384. Cambodia
  2385. </option><option value="Cameroon">
  2386. Cameroon, Republic of
  2387. </option><option value="Canada">
  2388. Canada
  2389. </option><option value="Cape Verde">
  2390. Cape Verde Islands
  2391. </option><option value="Central African">
  2392. Central African Republic
  2393. </option><option value="Chad, Republic Of">
  2394. Chad, Republic Of
  2395. </option>
  2396. <option value="China">
  2397. China, People's Republic of
  2398. </option><option value="Colombia">
  2399. Colombia
  2400. </option><option value="Comoros">
  2401. Comoros
  2402. </option><option value="Costa Rica">
  2403. Costa Rica
  2404. </option><option value="Cote d'Ivoire">
  2405. Cote d'Ivoire, Republic of
  2406. </option><option value="Croatia">
  2407. Croatia
  2408. </option><option value="Cuba">
  2409. Cuba
  2410. </option><option value="Cyprus">
  2411. Cyprus
  2412. </option><option value="Czech Republic">
  2413. Czech Republic
  2414. </option><option value="Denmark">
  2415. Denmark
  2416. </option><option value="Djibouti, Republic of">
  2417. Djibouti, Republic of
  2418. </option><option value="Dominica">
  2419. Dominica, Commonwealth of
  2420. </option><option value="Dominican">
  2421. Dominican Republic
  2422. </option><option value="DPR Korea">
  2423. DPR Korea (North)
  2424. </option><option value="East Timor">
  2425. East Timor
  2426. </option><option value=" Ecuador">
  2427. Ecuador
  2428. </option><option value="Egypt">
  2429. Egypt
  2430. </option><option value="El Salvador">
  2431. El Salvador
  2432. </option><option value="Eritrea">
  2433. Eritrea
  2434. </option><option value="Estonia">
  2435. Estonia
  2436. </option><option value="Ethiopia">
  2437. Ethiopia
  2438. </option><option value="Federated States">
  2439. Federated States of Micronesia
  2440. </option><option value="Fiji">
  2441. Fiji
  2442. </option><option value="Finland">
  2443. Finland
  2444. </option><option value="France">
  2445. France
  2446. </option><option value="FYR Macedonia">
  2447. FYR Macedonia
  2448. </option><option value="Gabonese">
  2449. Gabonese Republic
  2450. </option><option value="Gambia">
  2451. Gambia
  2452. </option><option value="Georgia">
  2453. Georgia
  2454. </option><option value="Germany">
  2455. Germany, Federal Republic Of
  2456. </option><option value="Ghana">
  2457. Ghana
  2458. </option><option value="Greece">
  2459. Greece
  2460. </option><option value="Grenada">
  2461. Grenada
  2462. </option><option value="Guatemala">
  2463. Guatemala
  2464. </option><option value="Haiti">
  2465. Haiti
  2466. </option><option value="Hong Kong SAR">
  2467. Hong Kong SAR
  2468. </option><option value="Hungary">
  2469. Hungary
  2470. </option><option value="Iceland">
  2471. Iceland
  2472. </option><option value="India">
  2473. India
  2474. </option><option value="Indonesia">
  2475. Indonesia, Republic of
  2476. </option><option value="Iran">
  2477. Iran
  2478. </option><option value="Iraq">
  2479. Iraq
  2480. </option><option value="Ireland">
  2481. Ireland, Republic Of
  2482. </option><option value="Israel">
  2483. Israel
  2484. </option><option value="Italy">
  2485. Italy
  2486. </option><option value="Jamaica">
  2487. Jamaica
  2488. </option><option value="Japan">
  2489. Japan
  2490. </option><option value="Jordan">
  2491. Jordan
  2492. </option><option value="Kenya">
  2493. Kenya
  2494. </option><option value="Korea">
  2495. Korea, Republic Of (South)
  2496. </option><option value="Kuwait">
  2497. Kuwait
  2498. </option><option value="Lebanon">
  2499. Lebanon
  2500. </option><option value="Lesotho">
  2501. Lesotho
  2502. </option><option value="Liberia">
  2503. Liberia
  2504. </option><option value="Libya">
  2505. Libya
  2506. </option><option value="Malaysia">
  2507. Malaysia
  2508. </option><option value="Mexico">
  2509. Mexico
  2510. </option><option value="Monaco">
  2511. Monaco
  2512. </option><option value="Mongolia">
  2513. Mongolia
  2514. </option><option value="Morocco">
  2515. Morocco
  2516. </option><option value="Mozambique">
  2517. Mozambique
  2518. </option><option value="Nepal">
  2519. Nepal
  2520. </option><option value=" New Zealand">
  2521. New Zealand
  2522. </option><option value="Norway">
  2523. Norway
  2524. </option><option value="Oman">
  2525. Oman
  2526. </option><option value="Pakistan">
  2527. Pakistan
  2528. </option><option value="Palestinian">
  2529. Palestinian Autho.Gaza/W Bank
  2530. </option><option value="Panama">
  2531. Panama, Republic of
  2532. </option><option value="Philippines">
  2533. Philippines
  2534. </option><option value="Poland">
  2535. Poland
  2536. </option><option value="Qatar">
  2537. Qatar
  2538. </option><option value="Romania">
  2539. Romania
  2540. </option><option value="Russia">
  2541. Russia
  2542. </option><option value="Saint Lucia">
  2543. Saint Lucia
  2544. </option><option value="Samoa">
  2545. Samoa, American
  2546. </option><option value="Saudi Arabia">
  2547. Saudi Arabia
  2548. </option><option value="Singapore">
  2549. Singapore
  2550. </option><option value="South Sudan">
  2551. South Sudan, Republic of
  2552. </option><option value="Spain">
  2553. Spain
  2554. </option><option value="Sri Lanka">
  2555. Sri Lanka
  2556. </option><option value="Sudan">
  2557. Sudan, Republic of
  2558. </option><option value="Swaziland">
  2559. Swaziland
  2560. </option><option value="Sweden">
  2561. Sweden
  2562. </option><option value="Switzerland">
  2563. Switzerland
  2564. </option><option value="Syria">
  2565. Syria
  2566. </option><option value="Taiwan">
  2567. Taiwan
  2568. </option><option value="Tajikistan">
  2569. Tajikistan
  2570. </option><option value="Tanzania">
  2571. Tanzania, United Republic Of
  2572. </option><option value="Thailand">
  2573. Thailand
  2574. </option><option value="Togolese">
  2575. Togolese Republic
  2576. </option><option value="Tonga">
  2577. Tonga
  2578. </option><option value="Trinidad">
  2579. Trinidad &amp; Tobago, Republic of
  2580. </option><option value="Tunisia">
  2581. Tunisia
  2582. </option><option value="Turkey">
  2583. Turkey
  2584. </option><option value="Turkmenistan">
  2585. Turkmenistan
  2586. </option><option value="Tuvalu">
  2587. Tuvalu
  2588. </option><option value="United Arab Emirates">
  2589. United Arab Emirates
  2590. </option><option value=" United States of America">
  2591. United States of America
  2592. </option><option value="Uruguay">
  2593. Uruguay
  2594. </option><option value="Uzbekistan">
  2595. Uzbekistan
  2596. </option><option value="Vanuatu">
  2597. Vanuatu
  2598. </option><option value="Venezuela">
  2599. Venezuela
  2600. </option><option value="Western Sahara">
  2601. Western Sahara
  2602. </option><option value="Yemen">
  2603. Yemen, Republic of
  2604. </option><option value="Zambia">
  2605. Zambia
  2606. </option><option value="Zimbabwe">
  2607. Zimbabwe
  2608. </option>
  2609. </select>
  2610. </div>
  2611. </div>
  2612. </div>
  2613. <div class="control-group form-field">
  2614. <label class="control-label">
  2615. City/Town
  2616. </label>
  2617. <div class="controls">
  2618. <div class="input-append">
  2619. <input type="text" name="employmentCity" id="employmentCity" maxlength="120" >
  2620. </div>
  2621. </div>
  2622. </div>
  2623. <div class="control-group form-field">
  2624. <label class="control-label">
  2625. Start date
  2626. </label>
  2627. <div class="controls">
  2628. <div class="input-append">
  2629. <select name="employmentStartYear" id="employmentStartYear" >
  2630. <option value="---">Select</option>
  2631. <option value="2016">2016</option>
  2632. <option value="2015">2015</option>
  2633. <option value="2014">2014</option>
  2634. <option value="2013">2013</option>
  2635. <option value="2012">2012</option>
  2636. <option value="2011">2011</option>
  2637. <option value="2010">2010</option>
  2638. <option value="2009">2009</option>
  2639. <option value="2008">2008</option>
  2640. <option value="2007">2007</option>
  2641. <option value="2006">2006</option>
  2642. <option value="2005">2005</option>
  2643. <option value="2004">2004</option>
  2644. <option value="2003">2003</option>
  2645. <option value="2002">2002</option>
  2646. <option value="2001">2001</option>
  2647. <option value="2000">2000</option>
  2648. <option value="1999">1999</option>
  2649. <option value="1998">1998</option>
  2650. <option value="1997">1997</option>
  2651. <option value="1996">1996</option>
  2652. <option value="1995">1995</option>
  2653. <option value="1994">1994</option>
  2654. <option value="1993">1993</option>
  2655. <option value="1992">1992</option>
  2656. <option value="1991">1991</option>
  2657. <option value="1990">1990</option>
  2658. <option value="1989">1989</option>
  2659. <option value="1988">1988</option>
  2660. <option value="1987">1987</option>
  2661. <option value="1986">1986</option>
  2662. <option value="1985">1985</option>
  2663. <option value="1984">1984</option>
  2664. <option value="1983">1983</option>
  2665. <option value="1982">1982</option>
  2666. <option value="1981">1981</option>
  2667. <option value="1980">1980</option>
  2668. <option value="1979">1979</option>
  2669. <option value="1978">1978</option>
  2670. <option value="1977">1977</option>
  2671. <option value="1976">1976</option>
  2672. <option value="1975">1975</option>
  2673. <option value="1974">1974</option>
  2674. <option value="1973">1973</option>
  2675. <option value="1972">1972</option>
  2676. <option value="1971">1971</option>
  2677. <option value="1970">1970</option>
  2678. <option value="1969">1969</option>
  2679. <option value="1968">1968</option>
  2680. <option value="1967">1967</option>
  2681. <option value="1966">1966</option>
  2682. <option value="1965">1965</option>
  2683. <option value="1964">1964</option>
  2684. <option value="1963">1963</option>
  2685. <option value="1962">1962</option>
  2686. <option value="1961">1961</option>
  2687. <option value="1960">1960</option>
  2688. <option value="1959">1959</option>
  2689. <option value="1958">1958</option>
  2690. <option value="1957">1957</option>
  2691. <option value="1956">1956</option>
  2692. <option value="1955">1955</option>
  2693. <option value="1954">1954</option>
  2694. <option value="1953">1953</option>
  2695. <option value="1952">1952</option>
  2696. <option value="1951">1951</option>
  2697. <option value="1950">1950</option>
  2698. <option value="1949">1949</option>
  2699. <option value="1948">1948</option>
  2700. <option value="1947">1947</option>
  2701. <option value="1946">1946</option>
  2702. <option value="1945">1945</option>
  2703. </select>
  2704. </div>
  2705. </div>
  2706. </div>
  2707. </div>
  2708. </div>
  2709. <div id="contact-information">
  2710. <h2>
  2711. Contact details
  2712. </h2>
  2713. <div class="control-group form-field">
  2714. <label class="control-label">
  2715. Preferred language to contact you
  2716. </label>
  2717. <div class="controls">
  2718. <div class="input-append">
  2719. <select name="languageOfPreference" required="required">
  2720. <option value="Not selected">
  2721. Select
  2722. </option>
  2723. <option value="English">
  2724. English
  2725. </option><option value="French">
  2726. French
  2727. </option>
  2728. </select>
  2729. </div>
  2730. </div>
  2731. </div>
  2732. <div class="control-group form-field">
  2733. <label class="control-label">
  2734. Email address
  2735. </label>
  2736. <div class="controls">
  2737. <div class="input-append">
  2738. <input type="text" name="CemailAddress" maxlength="100" required="required">
  2739. </div>
  2740. </div>
  2741. </div>
  2742. </div>
  2743. <div id="address-information">
  2744. <h2>
  2745. Residential address
  2746. </h2>
  2747. <div class="control-group form-field">
  2748. <label class="control-label">
  2749. Apartment number/unit
  2750. </label>
  2751. <div class="controls">
  2752. <div class="input-append">
  2753. <input type="text" name="aptUnit" maxlength="10" required="required">
  2754. </div>
  2755. </div>
  2756. </div>
  2757. <div class="control-group form-field">
  2758. <label class="control-label">
  2759. Residence/House/Street number
  2760. </label>
  2761. <div class="controls">
  2762. <div class="input-append">
  2763. <input type="text" id="streetNo" name="streetNo" maxlength="10" required="required">
  2764. </div>
  2765. </div>
  2766. </div>
  2767. <div class="control-group form-field">
  2768. <label class="control-label">
  2769. Street address/name
  2770. </label>
  2771. <div class="controls">
  2772. <div class="input-append">
  2773. <input type="text" name="streetAddress" maxlength="100" required="required">
  2774. </div>
  2775. </div>
  2776. </div>
  2777.  
  2778. <div class="control-group form-field">
  2779. <label class="control-label">
  2780. City/town
  2781. </label>
  2782. <div class="controls">
  2783. <div class="input-append">
  2784. <input type="text" name="cityTown" maxlength="50" required="required">
  2785. </div>
  2786. </div>
  2787. </div>
  2788. <div class="control-group form-field">
  2789. <label class="control-label" for="apply-country">
  2790. Country/territory
  2791. </label>
  2792. <div class="controls">
  2793. <div class="input-append">
  2794. <select name="countryterri" required="required">
  2795. <option value="Not Selected">
  2796. Select
  2797. </option>
  2798. <option value="Afghanistan">
  2799. Afghanistan
  2800. </option><option value="Albania">
  2801. Albania
  2802. </option><option value="Algeria">
  2803. Algeria
  2804. </option><option value="Andorra">
  2805. Andorra
  2806. </option><option value="Angola">
  2807. Angola
  2808. </option><option value="Antigua">
  2809. Antigua And Barbuda
  2810. </option><option value="Argentina">
  2811. Argentina
  2812. </option><option value="Armenia">
  2813. Armenia
  2814. </option><option value="Australia">
  2815. Australia
  2816. </option><option value="Austria">
  2817. Austria
  2818. </option><option value="Azerbaijan">
  2819. Azerbaijan
  2820. </option><option value="Bahamas">
  2821. Bahamas, Commonwealth of the
  2822. </option><option value="Bahrain">
  2823. Bahrain
  2824. </option><option value="Bangladesh">
  2825. Bangladesh
  2826. </option><option value="Barbados">
  2827. Barbados
  2828. </option><option value="Belarus">
  2829. Belarus
  2830. </option><option value="Belgium">
  2831. Belgium
  2832. </option><option value="Belize">
  2833. Belize
  2834. </option><option value="Benin">
  2835. Benin, Republic of
  2836. </option><option value="Bhutan">
  2837. Bhutan
  2838. </option><option value="Bolivia">
  2839. Bolivia
  2840. </option><option value="Bosnia and Herzegovina">
  2841. Bosnia and Herzegovina
  2842. </option><option value="Botswana">
  2843. Botswana, Republic Of
  2844. </option><option value="Brazil">
  2845. Brazil
  2846. </option><option value="British Citizen">
  2847. British Citizen
  2848. </option><option value="British National Overseas">
  2849. British National Overseas
  2850. </option><option value="British Overseas Citizen">
  2851. British Overseas Citizen
  2852. </option><option value="Brunei">
  2853. Brunei
  2854. </option><option value="Bulgaria">
  2855. Bulgaria
  2856. </option><option value="Burkina Faso">
  2857. Burkina Faso
  2858. </option><option value="Burundi">
  2859. Burundi
  2860. </option><option value="Cambodia">
  2861. Cambodia
  2862. </option><option value="Cameroon">
  2863. Cameroon, Republic of
  2864. </option><option value="Canada">
  2865. Canada
  2866. </option><option value="Cape Verde">
  2867. Cape Verde Islands
  2868. </option><option value="Central African">
  2869. Central African Republic
  2870. </option><option value="Chad, Republic Of">
  2871. Chad, Republic Of
  2872. </option>
  2873. <option value="China">
  2874. China, People's Republic of
  2875. </option><option value="Colombia">
  2876. Colombia
  2877. </option><option value="Comoros">
  2878. Comoros
  2879. </option><option value="Costa Rica">
  2880. Costa Rica
  2881. </option><option value="Cote d'Ivoire">
  2882. Cote d'Ivoire, Republic of
  2883. </option><option value="Croatia">
  2884. Croatia
  2885. </option><option value="Cuba">
  2886. Cuba
  2887. </option><option value="Cyprus">
  2888. Cyprus
  2889. </option><option value="Czech Republic">
  2890. Czech Republic
  2891. </option><option value="Denmark">
  2892. Denmark
  2893. </option><option value="Djibouti, Republic of">
  2894. Djibouti, Republic of
  2895. </option><option value="Dominica">
  2896. Dominica, Commonwealth of
  2897. </option><option value="Dominican">
  2898. Dominican Republic
  2899. </option><option value="DPR Korea">
  2900. DPR Korea (North)
  2901. </option><option value="East Timor">
  2902. East Timor
  2903. </option><option value=" Ecuador">
  2904. Ecuador
  2905. </option><option value="Egypt">
  2906. Egypt
  2907. </option><option value="El Salvador">
  2908. El Salvador
  2909. </option><option value="Eritrea">
  2910. Eritrea
  2911. </option><option value="Estonia">
  2912. Estonia
  2913. </option><option value="Ethiopia">
  2914. Ethiopia
  2915. </option><option value="Federated States">
  2916. Federated States of Micronesia
  2917. </option><option value="Fiji">
  2918. Fiji
  2919. </option><option value="Finland">
  2920. Finland
  2921. </option><option value="France">
  2922. France
  2923. </option><option value="FYR Macedonia">
  2924. FYR Macedonia
  2925. </option><option value="Gabonese">
  2926. Gabonese Republic
  2927. </option><option value="Gambia">
  2928. Gambia
  2929. </option><option value="Georgia">
  2930. Georgia
  2931. </option><option value="Germany">
  2932. Germany, Federal Republic Of
  2933. </option><option value="Ghana">
  2934. Ghana
  2935. </option><option value="Greece">
  2936. Greece
  2937. </option><option value="Grenada">
  2938. Grenada
  2939. </option><option value="Guatemala">
  2940. Guatemala
  2941. </option><option value="Haiti">
  2942. Haiti
  2943. </option><option value="Hong Kong SAR">
  2944. Hong Kong SAR
  2945. </option><option value="Hungary">
  2946. Hungary
  2947. </option><option value="Iceland">
  2948. Iceland
  2949. </option><option value="India">
  2950. India
  2951. </option><option value="Indonesia">
  2952. Indonesia, Republic of
  2953. </option><option value="Iran">
  2954. Iran
  2955. </option><option value="Iraq">
  2956. Iraq
  2957. </option><option value="Ireland">
  2958. Ireland, Republic Of
  2959. </option><option value="Israel">
  2960. Israel
  2961. </option><option value="Italy">
  2962. Italy
  2963. </option><option value="Jamaica">
  2964. Jamaica
  2965. </option><option value="Japan">
  2966. Japan
  2967. </option><option value="Jordan">
  2968. Jordan
  2969. </option><option value="Kenya">
  2970. Kenya
  2971. </option><option value="Korea">
  2972. Korea, Republic Of (South)
  2973. </option><option value="Kuwait">
  2974. Kuwait
  2975. </option><option value="Lebanon">
  2976. Lebanon
  2977. </option><option value="Lesotho">
  2978. Lesotho
  2979. </option><option value="Liberia">
  2980. Liberia
  2981. </option><option value="Libya">
  2982. Libya
  2983. </option><option value="Malaysia">
  2984. Malaysia
  2985. </option><option value="Mexico">
  2986. Mexico
  2987. </option><option value="Monaco">
  2988. Monaco
  2989. </option><option value="Mongolia">
  2990. Mongolia
  2991. </option><option value="Morocco">
  2992. Morocco
  2993. </option><option value="Mozambique">
  2994. Mozambique
  2995. </option><option value="Nepal">
  2996. Nepal
  2997. </option><option value=" New Zealand">
  2998. New Zealand
  2999. </option><option value="Norway">
  3000. Norway
  3001. </option><option value="Oman">
  3002. Oman
  3003. </option><option value="Pakistan">
  3004. Pakistan
  3005. </option><option value="Palestinian">
  3006. Palestinian Autho.Gaza/W Bank
  3007. </option><option value="Panama">
  3008. Panama, Republic of
  3009. </option><option value="Philippines">
  3010. Philippines
  3011. </option><option value="Poland">
  3012. Poland
  3013. </option><option value="Qatar">
  3014. Qatar
  3015. </option><option value="Romania">
  3016. Romania
  3017. </option><option value="Russia">
  3018. Russia
  3019. </option><option value="Saint Lucia">
  3020. Saint Lucia
  3021. </option><option value="Samoa">
  3022. Samoa, American
  3023. </option><option value="Saudi Arabia">
  3024. Saudi Arabia
  3025. </option><option value="Singapore">
  3026. Singapore
  3027. </option><option value="South Sudan">
  3028. South Sudan, Republic of
  3029. </option><option value="Spain">
  3030. Spain
  3031. </option><option value="Sri Lanka">
  3032. Sri Lanka
  3033. </option><option value="Sudan">
  3034. Sudan, Republic of
  3035. </option><option value="Swaziland">
  3036. Swaziland
  3037. </option><option value="Sweden">
  3038. Sweden
  3039. </option><option value="Switzerland">
  3040. Switzerland
  3041. </option><option value="Syria">
  3042. Syria
  3043. </option><option value="Taiwan">
  3044. Taiwan
  3045. </option><option value="Tajikistan">
  3046. Tajikistan
  3047. </option><option value="Tanzania">
  3048. Tanzania, United Republic Of
  3049. </option><option value="Thailand">
  3050. Thailand
  3051. </option><option value="Togolese">
  3052. Togolese Republic
  3053. </option><option value="Tonga">
  3054. Tonga
  3055. </option><option value="Trinidad">
  3056. Trinidad &amp; Tobago, Republic of
  3057. </option><option value="Tunisia">
  3058. Tunisia
  3059. </option><option value="Turkey">
  3060. Turkey
  3061. </option><option value="Turkmenistan">
  3062. Turkmenistan
  3063. </option><option value="Tuvalu">
  3064. Tuvalu
  3065. </option><option value="United Arab Emirates">
  3066. United Arab Emirates
  3067. </option><option value=" United States of America">
  3068. United States of America
  3069. </option><option value="Uruguay">
  3070. Uruguay
  3071. </option><option value="Uzbekistan">
  3072. Uzbekistan
  3073. </option><option value="Vanuatu">
  3074. Vanuatu
  3075. </option><option value="Venezuela">
  3076. Venezuela
  3077. </option><option value="Western Sahara">
  3078. Western Sahara
  3079. </option><option value="Yemen">
  3080. Yemen, Republic of
  3081. </option><option value="Zambia">
  3082. Zambia
  3083. </option><option value="Zimbabwe">
  3084. Zimbabwe
  3085. </option>
  3086. </select>
  3087. </div>
  3088. </div>
  3089. </div>
  3090.  
  3091.  
  3092. </div>
  3093.  
  3094. <div id="consent-and-declaration-information">
  3095. <h2>Consent and declaration</h2>
  3096. <p>Information provided to CIC is collected under the authority of the <em>Immigration and Refugee Protection Act</em> (IRPA) to determine admissibility to Canada. Information provided may be shared with other Canadian government institutions such as, but not limited to, the Canada Border Services Agency (CBSA), the Royal Canadian Mounted Police (RCMP), the Canadian Security Intelligence Service (CSIS), the Department of Foreign Affairs, Trade and Development (DFATD), Employment and Social Development Canada (ESDC), the Canada Revenue Agency (CRA), provincial and territorial governments and foreign governments in accordance with subsection 8(2) of the Privacy Act. Information may be disclosed to foreign governments, law enforcement bodies and detaining authorities with respect to the administration and enforcement of immigration legislation where such sharing of information may not put the individual and or his/her family at risk. Information may also be systematically validated by other Canadian government institutions for the purposes of validating status and identity to administer their programs.</p>
  3097. <p>Where biometrics are provided as part of an application, the fingerprints collected will be stored and shared with the RCMP. The fingerprint record may also be disclosed to law enforcement agencies in Canada in accordance with subsection 13.11(1) of the Immigration and Refugee Protection Regulations. The information may be used to establish or verify the identity of a person in order to prevent, investigate or prosecute an offence under any law of Canada or a province. This information may also be used to establish or verify the identity of an individual whose identity cannot reasonably be otherwise established or verified because of physical or mental condition. Canada may also share immigration information related to biometric records with foreign governments with whom Canada has an agreement or arrangement.</p>
  3098. <p>Depending on the type of application made, the information you provided will be stored in one or more Personal Information Banks (PIB) pursuant to section 10(1) of Canada's <em>Privacy Act</em>. Individuals also have a right to protection and access to their personal information stored in each corresponding PIB under the <em>Access to Information Act</em>. Further details on the PIBs pertaining to CIC's line of business and services and the Government of Canada's access to information and privacy programs are available at the Infosource website (<a href="http://infosource.gc.ca/" target="_blank">http://infosource.gc.ca</a>) and through the CIC Call Centre. Infosource is also available at public libraries across Canada.</p>
  3099. <p><strong> Declaration of Applicant </strong></p>
  3100. <p>I have read and understand the above declaration.</p>
  3101. <p>I declare that the information I have given in this application is truthful, complete and correct.</p>
  3102. <p>I understand that misrepresentation is an offence under section 127 of the <em>Immigration and Refugee Protection Act</em> and may result in a finding of inadmissibility to Canada or removal from Canada.</p>
  3103. <p>I agree that by typing my name and clicking sign, I am electronically signing my application.</p>
  3104. <div class="control-group form-field">
  3105. <div class="controls">
  3106. <label class="checkbox">
  3107. <input type="checkbox" required="required">
  3108. I agree
  3109. </label>
  3110. </div>
  3111. </div>
  3112. <div class="control-group form-field">
  3113. <label class="control-label">
  3114. Signature
  3115. </label>
  3116. <div class="controls">
  3117. <div class="input-append">
  3118. <input type="text" name="applysignature" maxlength="160" required="required">
  3119. </div>
  3120. </div>
  3121. </div>
  3122. </div>
  3123. <div id="terms-and-conditions">
  3124. <h2>
  3125. Terms &amp; Conditions
  3126. </h2>
  3127. <div class="control-group form-field">
  3128. <div class="controls remove-space">
  3129. <label class="checkbox">
  3130. <input type="checkbox" required="required">
  3131. I accept the General Conditions for Use of the Service, Terms and Conditions of the site and the Waiver of Rights. <a href="#cqTCFull" data-toggle="modal">View the full Terms and Conditions</a>
  3132. </label>
  3133. </div>
  3134. </div>
  3135. </div>
  3136.  
  3137.  
  3138.  
  3139. <div class="form-actions">
  3140. <input type="submit" class="btn btn-success" id="submit" value="Review &amp; Confirm">
  3141. </div>
  3142.  
  3143.  
  3144.  
  3145.  
  3146. </div>
  3147. </div>
  3148. </div>
  3149. </form>
  3150. </div>
  3151.  
  3152. <div class="span4">
  3153.  
  3154.  
  3155. <h3>GETTING STARTED</h3>
  3156. <ul>
  3157. <li class="clearfix"><span>&#8226; Applications are processed within 15 minutes after submission</span></li><li class="clearfix"><span>&#8226; Each application takes approximately 10 minutes to complete</span></li><li class="clearfix"><span>&#8226; Support team is available 24/7 by email and telephone</span></li>
  3158. </ul>
  3159. <h3>FREQUENTLY ASKED QUESTIONS</h3>
  3160. <ul>
  3161. <li class="clearfix"><span>&#8226; <b>Can I submit multiple applications?</b> Multiple applications can be submitted using a single payment</span></li><li class="clearfix"><span>&#8226; <b>What happens after I submit my application?</b> Applicant data will be verified to ensure accuracy upon submission</span></li><li class="clearfix"><span>&#8226; <b>What happens if my application is denied?</b> Processing fees will be refunded in the event of an eTA refusal</span></li><li class="clearfix"><span>&#8226; <b>What happens after my application is approved?</b> A unique eTA authorization number will be sent directly via e-mail as proof of a successful application</span></li>
  3162. </ul>
  3163. <h3>CREDIT/DEBIT CARD PAYMENTS</h3>
  3164. <ul>
  3165. <li class="image"><img src="../assets/images/payment/logos.png"/></li>
  3166. <li>
  3167. Debit and credit cards are accepted forms of payment. Please note that you will need to make an application for each member of your family/travel group.
  3168. </li>
  3169. </ul><h3>INSTANT ETA PROCESSING</h3>
  3170. <ul>
  3171.  
  3172. <li>
  3173. Etavisa-gov.ca has implemented a Instant Payment Notification (IPN) system, which allows your eTA application to be processed immediately. The cost of each individual application is $100. Your eTA authorization is delivered electronically direct to your e-mail.
  3174. </li>
  3175. </ul><h3>SECURE SSL TRANSACTION</h3>
  3176. <ul>
  3177.  
  3178. <li>
  3179. to etavisa-gov.ca operates within full observance of the international regulations of the Standard Payment Card Industry – Data Security Standard (PCI-DSS) laid down by the main credit companies for protecting their clients' personal information.
  3180. </li>
  3181. </ul><h3>HELP AND SUPPORT</h3>
  3182. <ul>
  3183.  
  3184. <li>
  3185. Our support team is available 24/7 to answer any questions about your application. If you are unsure about your visa situation or eligibility then please take the assessment questionnaire on the <a href="../index.html">homepage</a>.
  3186. </li>
  3187. </ul>
  3188. </div>
  3189. </div>
  3190. <div class="modal hide fade" id="cqTCFull">
  3191. <div class="modal-header">
  3192. <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
  3193. <h3>
  3194. General Conditions for Use of the Service & Waiver of Rights
  3195. </h3>
  3196. </div>
  3197. <div class="modal-body">
  3198. <p>Please find below the terms and conditions set out by the company official-canada-eta.com, which are governed by the Laws of the United Kingdom. </p>
  3199. <p>The company will process an application to the client's requirements and requests, and will not be responsible for any incorrect information provided. The company will make all efforts to obtain the correct visa in the specified period of time. However the company will not be responsible for the following occurring at the embassy; Refusal to issue the visa, Refusal to accept the application, Issuance of incorrect visa, Delay in processing the visa.</p>
  3200. <p>Should the company have caused any of the above through error or omission, then the company's liability is strictly limited to the cost of a replacement visa or refund of all fees paid and the company cannot accept any responsibility for consequential loss, such as, but not limited to: lost profits/income, lost airfares.</p>
  3201. <h2><strong>Cancellation rights</strong></h2>
  3202. <p>Once you have submitted your application with us online or over the phone, it is assumed that you have agreed that we may instantly begin the processing of your application and provide our service, and by agreeing to these terms and conditions, you are therefore providing your express consent for this to happen. As a result you will not have any right to cancel under The Consumer Contracts (Information, Cancellation and Additional Charges) Regulations 2013. This is because, under Regulation 36(1)(a) and 37(1)(a), you lose your right to cancel if you agree that we can start providing the services within the cancellation period.</p>
  3203. <h2><strong>Ownership</strong></h2>
  3204. <p>This website official-canada-eta.com is owned and operated by Sat Pro Ltd. If you do not agree to be bound by and comply with these terms of use, please do not access or use this site.</p>
  3205. <h2><strong>Limits on Use</strong></h2>
  3206. <p>You may not use this site or the services offered on or through it for personal gain and you may not sell or provide to any third party, or otherwise profit from, any services or information (nor any modification, adaptation or analysis of them) available on or through this site.</p>
  3207. <h2><strong>Security</strong></h2>
  3208. <p>We reserve the right from time to time to: (a) alter and/or introduce new and/or additional security measures without notice; (b) temporarily withdraw and/or limit the availability of this site to any individual(s); and (c) do anything else that we believe necessary to preserve the security and integrity of this site and the information held in this site's databases.</p>
  3209. <h2><strong>Accuracy and Site Content</strong></h2>
  3210. <p>We use reasonable skill and care in compiling the information accessible on and through this site. However, certain information may have been compiled and/or provided to us by a third party who is not a member of our network. official-canada-eta.com does not accept responsibility for the accuracy of any information which is obtained from any such third party. Furthermore, errors and omissions in the information accessible on and through this site may occur because of a number of factors which are inherent in any internet-related system and which are not within our reasonable control. For example, information may be affected by machine, software or operator error, or malfunctions in connection with data transmission. In view of this, the information is provided "as is" and you should always attempt to verify the accuracy of any information obtained from this site before relying upon it.<br /> This is a dynamic site and as a result, the content and look and feel may change from time to time without prior notice.</p>
  3211. <h2><strong>Limited Licence and Ownership</strong></h2>
  3212. <p>You are granted a limited licence to download the materials contained on this site to a personal computer, and to print a hard copy of such materials, solely for your personal, non-commercial use, provided that all copyright, trade mark and other proprietary notices are left intact.<br /> Save as expressly and specifically permitted in these terms of use, all translation, re-transmission, distribution or other use of the materials contained on this site and in its databases on any other internet site or other media is strictly prohibited. You are also prohibited from: (a) framing this site or any part of it on any other site; or (b) mirroring this site on another server; or (c) using automated screen capture or screen scraping technologies to obtain information of any sort from this site.<br /> The grant of this limited licence is conditional upon your agreement to and compliance with all of these terms of use.<br /> Software (if any) made available to download from this site is either owned by or licensed to us. You may only use such software in accordance with the end user licence accompanying that software or, where there is no such licence; you are granted a non-exclusive, non-transferable licence to use the said software for using this site in accordance with these terms of use.<br /> All copyright and all other intellectual property and proprietary rights of any sort relating in any way to this site (including, but not limited to, those relating to its content, branding and the services, software and any other materials made available on and through it) which are not granted to you in accordance with these terms of use are hereby expressly reserved to official-canada-eta.com or, in the case of any other brands, names and logos featured on this site, their respective owners.</p>
  3213. <h2><strong>Your Consent</strong></h2>
  3214. <p>By using this site you consent to official-canada-eta.com, processing and transferring (both inside and outside the EEA) the User Data as necessary for us to provide you with this service and enable you to use the site and receive your eTA.</p>
  3215. <h1><strong>Delivery Policy</strong></h1>
  3216. <p>Our Delivery Policy is set out to explain to you, the customer, how we provide the Processing Service offered on our website. </p>
  3217. <p>1- official-canada-eta.com is a private, third party eTA applications data processing agency and it is not affiliated in any way with the Government of Canada. <br /> <br /> 2- Services provided:</p>
  3218. <ul>
  3219. <li><strong>eTA Visa Waiver application</strong> data entry and processing.</li>
  3220. <li><strong>Same day</strong> processing and <strong>status update</strong>.</li>
  3221. <li><strong>Travel authorization confirmation</strong> delivery by email</li>
  3222. <li>Application information updates and status check for<strong> 2 years from eTA authorisation being received</strong>.</li>
  3223. <li><strong>24/7 eTA email and telephone customer support.</strong></li>
  3224. </ul>
  3225. <p>3- official-canada-eta.com does not guarantee that applications will be accepted, we only process the customer's application data and integrate into the Canada eTA system.</p>
  3226. <p>4- The customer is responsible for providing valid and accurate application information, official-canada-eta.com is not liable for any rejected applications due to non valid or incorrect information submitted by the customer.</p>
  3227. <p>5- Once the application data is submitted, official-canada-eta.com will have 24 hours to process the application and provide a status update to the customer. No service claims are accepted for non delivered travel authorization confirmation documents before 24 hours after information is submitted by the customer. Customer has the right to claim if they have not received a confirmation document or status update after 24 hours.</p>
  3228. <p>6- Applications can be putted on hold by the Canada eTA for multiple reason, in these cases a customer service representative will contact the customer to coordinate a possible solution. Same case if application is rejected.</p>
  3229. <p>7- By purchasing our services the customer agree to pay a service fee for data entry and assistance service fee which includes a $14 fee paid by official-canada-eta.com on his/her behalf to the Canadian Government for the eTA system fee.</p>
  3230. <p>8- Customer also provide explicit authorization to let official-canada-eta.com manage his/her application data and apply on his/her behalf to the Canada eTA system. According to our privacy policy and the Canadian eTA privacy statement at: http://www.cic.gc.ca/english/visit/eta.asp</p>
  3231. <p>9- Customer certifies he/her is entitled and legally authorized to pay with the submitted credit or debit card. official-canada-eta.com will charge the submitted credit card one total fee and shall be not liable for any illegal use of credit information submitted by the customer.</p>
  3232. <p>Once our same-day Processing Service is completed, which includes weekends and holidays, we will deliver the product to you by email only.</p>
  3233. <p>We strongly recommend you to add our email address orders@official-canada-eta.com to your white list to ensure that our email is not rejected due to an overfilled inbox.</p>
  3234. <p>PDF files can be read by utilizing <a href="http://get.adobe.com/reader/" target="_blank">Adobe reader</a> which is free to download</p>
  3235. <p>If you have any questions regarding our delivery policy, please contact us by email (support@official-canada-eta.com). We will respond within 24 hours.</p>
  3236. <p>Our Processing Service is considered delivered to you when submitted via email. We recommend that you take a printed copy of your travel authorization as some airlines may want to see a copy of it at check-in.</p>
  3237. <h1><strong>Privacy Policy</strong></h1>
  3238. <p><strong>This privacy policy discloses the privacy practices for official-canada-eta.com </strong></p>
  3239. <p>This privacy notice applies solely to information collected by this web site. It will notify you of the following: What personally identifiable information is collected from you through the web site, how it is used and with whom it may be shared. What choices are available to you regarding the use of your data. The security procedures in place to protect the misuse of your information. How you can correct any inaccuracies in the information. </p>
  3240. <h2><strong>Information Collection, Use, and Sharing </strong></h2>
  3241. <p>We are the sole owners of the information collected on this site. We only have access to/collect information that you voluntarily give us via email or other direct contact from you. We will not sell or rent this information to anyone. We will use your information to respond to you, regarding the reason you contacted us. We will not share your information with any third party outside of our organization, other than as necessary to fulfill your request, e.g. to ship an order. Unless you ask us not to, we may contact you via email in the future to tell you about specials, new products or services, or changes to this privacy policy. </p>
  3242. <h2><strong>Your Access to and Control Over Information </strong></h2>
  3243. <p>You may opt out of any future contacts from us at any time. You can do the following at any time by contacting us via the email address given on our website: See what data we have about you, if any. Change/correct any data we have about you. Have us delete any data we have about you. Express any concern you have about our use of your data. </p>
  3244. <h2><strong>Security </strong></h2>
  3245. <p>We take precautions to protect your information. When you submit sensitive information via the website, your information is protected both online and offline. Wherever we collect sensitive information (such as credit card data), that information is encrypted and transmitted to us in a secure way. You can verify this by looking for a closed lock icon at the bottom of your web browser, or looking for “https” at the beginning of the address of the web page. While we use encryption to protect sensitive information transmitted online, we also protect your information offline. Only employees who need the information to perform a specific job (for example, billing or customer service) are granted access to personally identifiable information. The computers/servers in which we store personally identifiable information are kept in a secure environment. </p>
  3246. <h2><strong>Registration </strong></h2>
  3247. <p>In order to use this website, a user must first complete the registration form. During registration a user is required to give certain information (such as name and email address). This information is used to contact you about the products/services on our site in which you have expressed interest. At your option, you may also provide demographic information (such as gender or age) about yourself, but it is not required. </p>
  3248. <h2><strong>Orders </strong></h2>
  3249. <p>We request information from you on our order form. To buy from us, you must provide contact information (like name and email address) and financial information (like credit card number, expiration date). This information is used for billing purposes and to fill your orders. If we have trouble processing an order, we’ll use this information to contact you. </p>
  3250. <h2><strong>Cookies </strong></h2>
  3251. <p>We use “cookies” on this site. A cookie is a piece of data stored on a site visitor’s hard drive to help us improve your access to our site and identify repeat visitors to our site. For instance, when we use a cookie to identify you, you would not have to log in a password more than once, thereby saving time while on our site. Cookies can also enable us to track and target the interests of our users to enhance the experience on our site. Usage of a cookie is in no way linked to any personally identifiable information on our site. Some of our business partners may use cookies on our site (for example, advertisers). However, we have no access to or control over these cookies. We use a credit card processing company to bill users for goods and services. These companies do not retain, share, store or use personally identifiable information for any secondary purposes beyond filling your order. This web site contains links to other sites. Please be aware that we are not responsible for the content or privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of any other site that collects personally identifiable information. If you feel that we are not abiding by this privacy policy, you should contact us immediately via email: support@official-canada-eta.com</p>
  3252. <h2><strong>Links</strong></h2>
  3253. <p>Where this site contains links to third party sites you should be aware that we may not control the sites reached through those links. We are not responsible for the content or privacy practices of sites which we do not control. The existence of a link on this site does not imply any endorsement or approval of any goods, services, opinions or other material(s) of any sort made available on or through sites which we do not control, nor do we take any responsibility for the opinions of third parties (if any) expressed on or through this site.</p>
  3254. <h2><strong>Disclaimer and Limitation of Liability</strong></h2>
  3255. <p>(a) Except as may be set out in these terms of use, this site, its content, and any use you choose to make of it, are provided and permitted without any representations or warranties of any kind, whether express or implied, and we disclaim all such representations and warranties so far as permitted by law. We do not warrant that information contained on or accessed through this site is adequate, complete, accurate or up-to-date, nor do we warrant that the site (or any part of it) will always be accessible, fully functional or free from errors and viruses. Accordingly, you agree that the only remedy available to you for breach of these terms of use shall be for our breach of contract under these terms of use.<br /> (b) Subject to paragraph (d) below, but otherwise so far as permitted by law, we exclude and are not liable for all loss, damage(s) and liability (whether or not caused by our negligence) for all wasted time, all loss/corruption of data, all loss of profits, opportunities, and goodwill, and all indirect, consequential and punitive loss or damage(s) arising from or in relation to use of this site and/or the information on it or any services provided through it, howsoever arising, whether in contract, tort (including negligence), statute or otherwise, and even if it was reasonably foreseeable or we have been made aware of the possibility of such loss/damage(s)/liability.<br /> (c) Subject to paragraph (d) below, but otherwise so far as permitted by law, our total aggregate liability hereunder in respect of direct loss and damage and other direct liability, howsoever arising, whether in contract, tort (including negligence), statute or otherwise shall be limited per claim or series of related claims, to ?100.<br /> (d) Nothing in these terms of use shall limit our liability for: <br /> (i) loss or damage for death or personal injury caused by our negligence; or <br /> (ii) for any fraudulent misrepresentation made by us or those under our control.<br /> (e) If you are using this site as a consumer then nothing in these terms of use shall in any way limit your statutory rights.</p>
  3256. <h1><strong>Refund Policy</strong></h1>
  3257. <p>Because the website has implemented the Instant Payment Notification (IPN) system, which allows the service to be processed immediately after paying the processing fee, we operate a <strong>NO REFUND policy.</strong> The cost of the eTA application is non-refundable and should a duplicate Canada eTA either exist or is found for the traveller(s), we are not able to issue a refund.</p>
  3258. <p>We do take exceptional circumstances into consideration should something happen that is outside of your control and will consider refunds on a case-by-case basis. Please email us at <strong>support@official-canada-eta.com</strong>.</p>
  3259. <h2><strong>Severability</strong></h2>
  3260. <p>If one or more of the provisions of these terms of use are at any time found to be invalid by a court, tribunal or other forum of competent jurisdiction, or otherwise rendered unenforceable, that decision shall not invalidate or void the remainder of these terms of use. These terms of use shall be deemed amended by modifying or severing such provisions as necessary to render them valid, legal and enforceable while preserving their intent, or if that is not possible, by substituting another provision that is valid, legal and enforceable which materially gives effect to their intent. Any invalid or unenforceable provision or provisions shall be severable from these terms of use so that the validity or enforceability of their remaining provisions, or the validity of the provision(s) in question in any other jurisdiction shall not be affected.</p>
  3261. <h2><strong>Entire Agreement</strong></h2>
  3262. <p>These terms of use supersede all prior agreements, arrangements and statements (except for those for which liability is not excluded) between us with respect to your use of this site and constitute the entire agreement between us relating to the same.</p>
  3263. <h2><strong>Change of Terms of Use</strong></h2>
  3264. <p>We may alter, adapt or otherwise change these terms of use from time to time (for security, legal or regulatory reasons, or to reflect updates or changes to the services or functionality of the site) without prior notice. Your continued use of this site will constitute acceptance of those amended terms of use and you should review them before making any further use of this site.</p>
  3265. <h2><strong>About Us</strong></h2>
  3266. <p>This site is made available to you by Sat Pro Ltd and is ©official-canada-eta.com. All rights reserved.<br /> Our normal hours of business are 0900 to 1800 weekdays excluding Bank Holidays.<br /> You can contact us by writing to us at the above address or by using the 'contact us' facility on this site.</p>
  3267. <h2><strong>Miscellaneous</strong></h2>
  3268. <p>These terms of use shall not constitute or be deemed to constitute a partnership, joint venture or contract of employment between you and us.<br /> You may not assign, sub-license, sub-contract or otherwise transfer or deal in any of your rights or obligations under these terms of use without our prior written consent.<br /> Headings in these terms of use are for convenience only and are not to be taken into account when construing these terms of use.</p>
  3269. <h2><strong>Termination</strong></h2>
  3270. <p>We reserve the right to block your access to this site immediately and without notice if, in good faith, we believe that you have failed to comply with any of these terms of use.</p>
  3271. <h2><strong>Rights of Third Parties</strong></h2>
  3272. <p>No one other than you and us will have any right under the Contracts (Rights of Third Parties) Act 1999 to enforce any term of these terms of use, regardless of whether such person or entity has been identified by name, as a member of a class or as answering a particular description. For the avoidance of doubt, nothing in this clause shall affect the rights of any permitted assignee or transferee.</p>
  3273. <h2><strong>Governing Law</strong></h2>
  3274. <p>Use of this site and the Service is governed by English law, and you irrevocably agree to submit any claim or dispute arising in relation to, out of, or in connection with this site (and any use you make of it or the Service and/or opportunities offered through it) to the non-exclusive jurisdiction of the English courts.</p>
  3275. <h2><strong>Passport and Visa</strong></h2>
  3276. <p>You must consult the relevant Embassy or Consulate for this information. Requirements may change and you should check fro up-to-date position in good time before departure. We regret we can accept no liability if you are refused entry onto the flight or into any country due to failure on your part to carry the correct passport, visa or other documents required by any airline, authority or country. Health: Recommendations inoculations for travel may change at any time and you should consult your doctor on current recommendations before you depart. Health Requirements for your holiday destination are outlined in the department of health leaflet entitled "The Traveller's Guide to Health" (T4). It is your responsibility to ensure that you obtain all recommended medication and follow all medical advice in relation to your trip.<br /> The User's use of the Website and or the Offered Service is on the strict understanding that the Website and or the Offered Service is not engaged in rendering advice and should not be relied upon when making any related travel or other decision. The information contained within the Website and or the Offered Service is provided without warranties expressed or implied relating to the accuracy, fitness for purpose, compatibility or security of any components of the Website and or the Offered Service. The Company does not guarantee uninterrupted availability of the Website and or the Offered Service nor, that any representation or statement contained on the Website will be error free.</p>
  3277. </div>
  3278. <div class="modal-footer">
  3279. <a href="#" class="btn" data-dismiss="modal">
  3280. Close
  3281. </a>
  3282. </div>
  3283. </div>
  3284. </div>
  3285. <!--footer Start here-->
  3286. <div id="footer">
  3287. <div class="container">
  3288. <div class="row">
  3289. <div class="span12 text-center">
  3290. <div class="text-center">
  3291. <ul>
  3292. <li class="first here"><a href="index.html" title="" >Home</a></li>
  3293. <li><a href="../index.html" title="" >eTA Application</a></li>
  3294. <li><a href="../canada-eta-requirements/index.html" title="" >eTA Requirements</a></li>
  3295. <li><a href="../what-is-canada-eta/index.html" title="" >eTA FAQs</a></li>
  3296. <li><a href="../canada-eta-service/index.html" title="" >eTA Services</a></li>
  3297. <li><a href="costs/index.html" title="" >Costs</a></li>
  3298. <li><a href="contacts/index.html" title="" >Contacts</a></li>
  3299. </ul>
  3300. </div>
  3301. <div class="text-align">
  3302. <ul>
  3303. <li><a href="../information/terms-and-conditions/index.html">Terms and Conditions</a></li>
  3304. <li><a href="../information/privacy-policy/index.html">Privacy Policy</a></li>
  3305. <li><a href="../information/disclaimer/index.html">Disclaimer</a></li>
  3306. <li><a href="../information/refund-policy/index.html">Refund Policy</a></li>
  3307. </ul>
  3308. <br/>
  3309. <hr>
  3310. <p>
  3311. <small>This website is owned and operated by etavisa-gov.ca, a private company that is not affiliated with any government or embassy.</small>
  3312. </p>
  3313. <br/>
  3314. <p>
  3315. &copy; 2016-
  3316. <span class="lowercase">etavisa-gov.ca</span>.
  3317. All rights reserved
  3318. </p>
  3319. </div>
  3320.  
  3321.  
  3322. </div>
  3323. </div>
  3324. </div>
  3325. </div>
  3326. <!-- Piwik -->
  3327. <script type="text/javascript">
  3328. var _paq = _paq || [];
  3329. _paq.push(['trackPageView']);
  3330. _paq.push(['enableLinkTracking']);
  3331. (function() {
  3332. var u="https://ryanlion.piwikpro.com/";
  3333. _paq.push(['setTrackerUrl', u+'piwik.php']);
  3334. _paq.push(['setSiteId', 7]);
  3335. var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
  3336. g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
  3337. })();
  3338. </script>
  3339. <noscript><p><img src="https://ryanlion.piwikpro.com/piwik.php?idsite=7" style="border:0;" alt="" /></p></noscript>
  3340. <!-- End Piwik Code -->
  3341. </body>
  3342.  
  3343. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement