www.jobleads.com Open in urlscan Pro
2606:4700:3108::ac42:2897  Public Scan

URL: https://www.jobleads.com/en-us/registration/job?campaignId=7&jobId=efa1f9dc7ee2154d228f9f840d7d5e4a7&jmId=1670&jobLocatio...
Submission: On August 16 via manual from PH — Scanned from DE

Form analysis 4 forms found in the DOM

Name: searchGET /registration

<form id="search" name="search" method="GET" action="/registration" novalidate="novalidate">
  <div class="c-content-box-list c-content-box-list__2 c-content-box-list--forms">
    <div class="c-content-box-list-container">
      <input type="hidden" name="campaignId" value="30">
      <fieldset class="form-group search-fields">
        <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label mdl-textfield--keyword is-upgraded" id="autocompleteKeyword" data-upgraded=",MaterialTextfield">
          <input type="text" name="keyword" id="search_keyword" class="mdl-textfield__input ui-autocomplete-input" value="" data-msg="To perform a search, you must specify either a keyword or a city." maxlength="255" autocomplete="off">
          <label class="mdl-textfield__label" for="search_keyword">
            <mat-icon class="mat-icon notranslate material-icons mat-icon-no-color" role="img" aria-hidden="true">search</mat-icon> Keyword, job title </label>
          <ul id="ui-id-1" tabindex="0" class="ui-menu ui-widget ui-widget-content ui-autocomplete ui-front" style="display: none;"></ul>
        </div>
        <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label mdl-textfield--city is-upgraded" id="autocompleteLocation" data-upgraded=",MaterialTextfield">
          <input type="text" name="location" id="search_city" class="mdl-textfield__input ui-autocomplete-input" value="" data-msg="To perform a search, you must specify either a keyword or a city." maxlength="255" autocomplete="off">
          <label class="mdl-textfield__label" for="search_city">
            <mat-icon class="mat-icon notranslate material-icons mat-icon-no-color" role="img" aria-hidden="true">location_on</mat-icon> City </label>
          <ul id="ui-id-2" tabindex="0" class="ui-menu ui-widget ui-widget-content ui-autocomplete ui-front" style="display: none;"></ul>
        </div>
        <script type="text/javascript">
          (function(window, document, $) {
            var autocompleteKeywordRequest = null;
            var autocompleteLocationRequest = null;

            function bindAutocompleteKeyword(inputSelector) {
              $(inputSelector).bind('keydown', function(event) {
                //abort method when enter is pressed
                if (event.keyCode === $.ui.keyCode.ENTER) {
                  if (autocompleteKeywordRequest) {
                    autocompleteKeywordRequest.abort();
                  }
                  if (autocompleteLocationRequest) {
                    autocompleteLocationRequest.abort();
                  }
                  return true;
                } else if (event.keyCode === $.ui.keyCode.TAB && $(this).data('autocomplete') && $(this).data('autocomplete').menu.active) {
                  // don't navigate away from the field on tab when selecting an item
                  event.preventDefault();
                }
              }).autocomplete({
                appendTo: '#autocompleteKeyword',
                delay: 100,
                minLength: 2,
                source: function(request, responseCallback) {
                  var searchTerm = request.term.split(/,\s*/).pop();
                  var countryCode = window.autocompleteCountry || 'DEU';
                  if (autocompleteKeywordRequest) {
                    autocompleteKeywordRequest.abort();
                  }
                  autocompleteKeywordRequest = autocomplete(searchTerm, 'keyword', responseCallback, countryCode);
                  return true;
                },
                focus: function() {
                  // prevent value inserted on focus
                  return false;
                },
                select: function(event, ui) {
                  this.value = ui.item.value;
                  return false;
                },
                open: function(event, ui) {
                  if (navigator.userAgent.match(/(iPod|iPhone|iPad)/)) {
                    $('.ui-autocomplete').off('menufocus hover mouseover');
                  }
                }
              });
            }

            function bindAutocompleteLocation(inputSelector) {
              $(inputSelector).bind('keydown', function(event) {
                //abort method when enter is pressed
                if (event.keyCode === $.ui.keyCode.ENTER) {
                  if (autocompleteKeywordRequest) {
                    autocompleteKeywordRequest.abort();
                  }
                  if (autocompleteLocationRequest) {
                    autocompleteLocationRequest.abort();
                  }
                  return true;
                } else if (event.keyCode === $.ui.keyCode.TAB && $(this).data('autocomplete') && $(this).data('autocomplete').menu.active) {
                  // don't navigate away from the field on tab when selecting an item
                  event.preventDefault();
                }
              }).autocomplete({
                appendTo: '#autocompleteLocation',
                delay: 100,
                minLength: 2,
                source: function(request, responseCallback) {
                  var searchTerm = request.term;
                  var countryCode = window.autocompleteCountry || 'DEU';
                  if (autocompleteLocationRequest) {
                    autocompleteLocationRequest.abort();
                  }
                  autocompleteLocationRequest = autocomplete(searchTerm, 'location', responseCallback, countryCode);
                  return true;
                },
                focus: function() {
                  // prevent value inserted on focus
                  return false;
                },
                select: function(event, ui) {
                  this.value = ui.item.value;
                  return false;
                },
                open: function(event, ui) {
                  if (navigator.userAgent.match(/(iPod|iPhone|iPad)/)) {
                    $('.ui-autocomplete').off('menufocus hover mouseover');
                  }
                }
              });
            }

            function autocomplete(term, mode, responseCallback, country) {
              var autocompletedTerms = [];
              var validModes = ['keyword', 'location', 'region', 'citynameAndZipcode'];
              var isValidMode = ($.inArray(mode, validModes) >= 0);
              var ajax = null;
              country = ((typeof(country) != 'undefined') && (country.length > 0)) ? '/' + country : '';
              if (isValidMode) {
                var url = '/search/autocomplete/__locale__/__mode__/__term__/__country__';
                url = url.replace('__locale__', window.locale || 'en_US').replace('__mode__', mode).replace('__term__', encodeURIComponent(term)).replace('/__country__', country);
                ajax = $.ajax({
                  scriptCharset: 'utf-8',
                  contentType: 'application/json; charset-utf-8',
                  url: url,
                  dataType: 'json',
                  type: 'GET',
                  async: true,
                  context: document.body,
                  complete: function(response) {
                    var responseObj = new AjaxResponse(response);
                    if (responseObj.getStatus() == 'OK') {
                      autocompletedTerms = responseObj.getPayloadContent();
                      if (autocompletedTerms && autocompletedTerms.length > 15) {
                        autocompletedTerms = autocompletedTerms.slice(0, 15);
                      }
                    }
                    responseCallback(autocompletedTerms);
                  }
                });
              }
              return ajax;
            }
            $(document).ready(function() {
              bindAutocompleteKeyword('#search_keyword');
              bindAutocompleteLocation('#search_city');
            });
          })(window, document, jQuery);
        </script>
      </fieldset>
    </div>
    <div class="c-content-box-list-container">
      <fieldset class="form-group salary-slider ">
        <span>What is your desired salary?</span>
        <div class="container-fluid">
          <div class="row">
            <div class="col">
              <div class="salary-slider layout-landingpage" id="salarySlidersearchForm">
                <input type="hidden" name="minSalary" value="20000">
                <input type="hidden" name="maxSalary" value="-1">
                <div class="row">
                  <div class="col-xs-12">
                    <div class="nouislider-labels">
                      <div>EUR 200,000 +</div>
                      <div>EUR 20,000</div>
                    </div>
                    <div class="nouislider-sliders-padding">
                      <div class="nouislider">
                        <div class="noUi-target noUi-ltr noUi-horizontal">
                          <div class="noUi-base">
                            <div class="noUi-connects">
                              <div class="noUi-connect" style="transform: translate(0%, 0px) scale(1, 1);"></div>
                            </div>
                            <div class="noUi-origin" style="transform: translate(-100%, 0px); z-index: 5;">
                              <div class="noUi-handle noUi-handle-lower" data-handle="0" tabindex="0" role="slider" aria-orientation="horizontal" aria-valuemin="0.0" aria-valuemax="7.0" aria-valuenow="0.0" aria-valuetext="EUR 20,000">
                                <div class="noUi-touch-area"></div>
                              </div>
                            </div>
                            <div class="noUi-origin" style="transform: translate(0%, 0px); z-index: 4;">
                              <div class="noUi-handle noUi-handle-upper" data-handle="1" tabindex="0" role="slider" aria-orientation="horizontal" aria-valuemin="1.0" aria-valuemax="8.0" aria-valuenow="8.0" aria-valuetext="EUR 200,000 +">
                                <div class="noUi-touch-area"></div>
                              </div>
                            </div>
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
                </div>
              </div>
              <script type="text/javascript">
                (function(document, window, jQuery) {
                  if (!window.salarySliders) {
                    window.salarySliders = {};
                  }
                  var steps = JSON.parse(
                    '[{"amount":20000,"label":"EUR 20,000"},{"amount":40000,"label":"EUR 40,000"},{"amount":60000,"label":"EUR 60,000"},{"amount":80000,"label":"EUR 80,000"},{"amount":100000,"label":"EUR 100,000"},{"amount":125000,"label":"EUR 125,000"},{"amount":150000,"label":"EUR 150,000"},{"amount":200000,"label":"EUR 200,000"},{"amount":-1,"label":"EUR 200,000 +"}]'
                    );
                  window.salarySliders['searchForm'] = {
                    steps: steps
                  };
                  var min = 0,
                    max = 8;
                  var selectedMinIndex = '0' !== 'false' ? 0 : min;
                  var selectedMaxIndex = '8' !== 'false' ? 8 : max;
                  var minSalaryInput = document.querySelector('#salarySlidersearchForm input[name=minSalary]');
                  var maxSalaryInput = document.querySelector('#salarySlidersearchForm input[name=maxSalary]');
                  jQuery(document).ready(function() {
                    var sliderContainer = document.querySelector('#salarySlidersearchForm .nouislider > div');
                    var slider = noUiSlider.create(sliderContainer, {
                      behaviour: 'tap',
                      connect: true,
                      margin: 1,
                      step: 1,
                      range: {
                        min: min,
                        max: max
                      },
                      start: [selectedMinIndex, selectedMaxIndex],
                      format: {
                        to: function(value) {
                          return getLabel(value);
                        },
                        from: function(value) {
                          return parseInt(value);
                        }
                      }
                    });
                    window.salarySliders['searchForm'].slider = slider;
                    sliderContainer.noUiSlider.getSelectedSalary = function() {
                      return {
                        min: window.salarySliders['searchForm'].steps[selectedMinIndex],
                        max: window.salarySliders['searchForm'].steps[selectedMaxIndex],
                        hasSelection: selectedMinIndex > min || selectedMaxIndex < max
                      };
                    };
                    sliderContainer.noUiSlider.resetSelectedSalary = function() {
                      slider.set([min, max]);
                    };
                    updateLabels(selectedMinIndex, selectedMaxIndex);
                    slider.on('update', function(labels, index, values) {
                      updateLabels(parseInt(values[0]), parseInt(values[1]));
                    });
                    slider.on('change', function(labels, index, values) {
                      var lastMin = selectedMinIndex,
                        lastMax = selectedMaxIndex;
                      selectedMinIndex = parseInt(values[0]);
                      selectedMaxIndex = parseInt(values[1]);
                      if (selectedMinIndex !== lastMin || selectedMaxIndex !== lastMax) {
                        triggerGlobalSliderChangedEvent(selectedMinIndex, selectedMaxIndex);
                      }
                    });
                  });

                  function updateLabels(min, max) {
                    jQuery('#salarySlidersearchForm .nouislider-labels > div:last-child').text(getLabel(min));
                    jQuery('#salarySlidersearchForm .nouislider-labels > div:first-child').text(getLabel(max));
                    if (minSalaryInput && maxSalaryInput) {
                      minSalaryInput.value = getAmount(min);
                      maxSalaryInput.value = getAmount(max);
                    }
                  }

                  function triggerGlobalSliderChangedEvent(min, max) {
                    // this triggers a namespaced salarySliderChanged event
                    // depending code should attach to this
                    jQuery(window).trigger('salarySliderChanged.searchForm', {
                      minSalary: getAmount(min),
                      maxSalary: getAmount(max)
                    });
                  }

                  function getLabel(index) {
                    return window.salarySliders['searchForm'].steps[index] ? window.salarySliders['searchForm'].steps[index].label : '';
                  }

                  function getAmount(index) {
                    return window.salarySliders['searchForm'].steps[index] ? window.salarySliders['searchForm'].steps[index].amount : '';
                  }
                })(document, window, jQuery);
              </script>
            </div>
          </div>
        </div>
      </fieldset>
      <div class="button-container">
        <button type="submit" class="o-button o-button--orange o-text--medium">Find job</button>
      </div>
    </div>
  </div>
</form>

Name: formPOST /en-us/registration/job?campaignId=7&jobId=efa1f9dc7ee2154d228f9f840d7d5e4a7&jmId=1670&jobLocation=516039103&utm_source=jora%7Cr-jb%7Cc-ph&utm_medium=job-external&utm_campaign=jobs&utm_content=jobmarket-id%3D1670%7Clandingpage-id%3D158%7Cjob-id%3Dfa1f9dc7ee2154d228f9f840d7d5e4a7%7Cjob-workarea%3D08-05%7Cjob-hierarchy%3D04%7Cjob-salary-benchmark%3D05%7Cjob-industry%3D46%7Cjob-location%3Dmanila%7Cjobtitle%3Dinformation-security-officer&jobjmlp=158&ccuid=47983331922&register=1

<form method="post" name="form" autocomplete="off" class="form" novalidate="novalidate"
  action="/en-us/registration/job?campaignId=7&amp;jobId=efa1f9dc7ee2154d228f9f840d7d5e4a7&amp;jmId=1670&amp;jobLocation=516039103&amp;utm_source=jora%7Cr-jb%7Cc-ph&amp;utm_medium=job-external&amp;utm_campaign=jobs&amp;utm_content=jobmarket-id%3D1670%7Clandingpage-id%3D158%7Cjob-id%3Dfa1f9dc7ee2154d228f9f840d7d5e4a7%7Cjob-workarea%3D08-05%7Cjob-hierarchy%3D04%7Cjob-salary-benchmark%3D05%7Cjob-industry%3D46%7Cjob-location%3Dmanila%7Cjobtitle%3Dinformation-security-officer&amp;jobjmlp=158&amp;ccuid=47983331922&amp;register=1"
  data-ajax-url="/registration/save?campaignId=7&amp;jobId=efa1f9dc7ee2154d228f9f840d7d5e4a7&amp;jmId=1670&amp;jobLocation=516039103&amp;utm_source=jora%7Cr-jb%7Cc-ph&amp;utm_medium=job-external&amp;utm_campaign=jobs&amp;utm_content=jobmarket-id%3D1670%7Clandingpage-id%3D158%7Cjob-id%3Dfa1f9dc7ee2154d228f9f840d7d5e4a7%7Cjob-workarea%3D08-05%7Cjob-hierarchy%3D04%7Cjob-salary-benchmark%3D05%7Cjob-industry%3D46%7Cjob-location%3Dmanila%7Cjobtitle%3Dinformation-security-officer&amp;jobjmlp=158&amp;ccuid=47983331922"
  data-selector="registrationForm" id="form">
  <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label is-upgraded" data-upgraded=",MaterialTextfield">
    <input type="text" name="user[FirstName]" id="firstName" data-msg="Please enter a valid first name!" class="mdl-textfield__input" value=""> <label class="mdl-textfield__label" for="firstName">
      <div class="d-inline-flex align-items-center"><i class="material-icons">person</i> First name </div>
    </label>
  </div>
  <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label is-upgraded" data-upgraded=",MaterialTextfield">
    <input type="text" name="user[LastName]" id="lastName" data-msg="Please enter a valid last name!" class="mdl-textfield__input" value=""> <label class="mdl-textfield__label" for="lastName">
      <div class="d-inline-flex align-items-center"><i class="material-icons">person_add</i> Last name </div>
    </label>
  </div>
  <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label is-upgraded" data-upgraded=",MaterialTextfield">
    <input type="text" name="user[UserName]" id="email" data-msg="Please check the spelling. The following symbols are allowed: a-z, 0-9, as well as ! # $ &amp; ' * + - / = ? ^ _ | ~ ." class="mdl-textfield__input" value=""> <label
      class="mdl-textfield__label" for="email">
      <div class="d-inline-flex align-items-center"><i class="material-icons">mail</i> Email address </div>
    </label>
  </div>
  <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label is-upgraded" data-upgraded=",MaterialTextfield">
    <input type="password" name="user[Password]" id="password" data-msg="Password must have at least 8 characters and include a lowercase letter, uppercase letter, number and special character" class="mdl-textfield__input" value=""> <label
      class="mdl-textfield__label" for="password">
      <div class="d-inline-flex align-items-center"><i class="material-icons">lock</i> Password </div>
    </label>
  </div>
  <div class="form-submit">
    <button type="submit" class="o-button o-button--orange o-button--center o-text--medium">Start application</button>
    <p class="legal">By clicking the „Start application" button you accept our <a href="/terms-of-use" target="_blank">Terms of use</a> and <a href="/privacy-policy" target="_blank">Privacy policy</a>.</p>
    <div class="safety-badge-container_middle safety-badge-container_lg">
      <div class="safety-badge safety-badge_lg">
        <div class="safety-badge__icon">
          <div class="safety-badge__circle"></div>
          <img src="https://static.jobleads.com/resources/_shared/gfx/safety-icon.svg" alt="Safety icon">
          <span>100%</span>
        </div>
        <div class="safety-badge__info">
          <p class="safety-badge__title">Privacy policy</p>
          <ul class="safety-badge__list">
            <li>Safe</li>
            <li>Protected</li>
            <li>Certified</li>
          </ul>
        </div>
      </div>
    </div>
  </div>
</form>

Name: formPOST /en-us/registration/job?campaignId=7&jobId=efa1f9dc7ee2154d228f9f840d7d5e4a7&jmId=1670&jobLocation=516039103&utm_source=jora%7Cr-jb%7Cc-ph&utm_medium=job-external&utm_campaign=jobs&utm_content=jobmarket-id%3D1670%7Clandingpage-id%3D158%7Cjob-id%3Dfa1f9dc7ee2154d228f9f840d7d5e4a7%7Cjob-workarea%3D08-05%7Cjob-hierarchy%3D04%7Cjob-salary-benchmark%3D05%7Cjob-industry%3D46%7Cjob-location%3Dmanila%7Cjobtitle%3Dinformation-security-officer&jobjmlp=158&ccuid=47983331922&register=1&isAdvanced=1

<form method="post" name="form" autocomplete="off" class="form" novalidate="novalidate"
  action="/en-us/registration/job?campaignId=7&amp;jobId=efa1f9dc7ee2154d228f9f840d7d5e4a7&amp;jmId=1670&amp;jobLocation=516039103&amp;utm_source=jora%7Cr-jb%7Cc-ph&amp;utm_medium=job-external&amp;utm_campaign=jobs&amp;utm_content=jobmarket-id%3D1670%7Clandingpage-id%3D158%7Cjob-id%3Dfa1f9dc7ee2154d228f9f840d7d5e4a7%7Cjob-workarea%3D08-05%7Cjob-hierarchy%3D04%7Cjob-salary-benchmark%3D05%7Cjob-industry%3D46%7Cjob-location%3Dmanila%7Cjobtitle%3Dinformation-security-officer&amp;jobjmlp=158&amp;ccuid=47983331922&amp;register=1&amp;isAdvanced=1"
  data-ajax-url="/registration/save?campaignId=7&amp;jobId=efa1f9dc7ee2154d228f9f840d7d5e4a7&amp;jmId=1670&amp;jobLocation=516039103&amp;utm_source=jora%7Cr-jb%7Cc-ph&amp;utm_medium=job-external&amp;utm_campaign=jobs&amp;utm_content=jobmarket-id%3D1670%7Clandingpage-id%3D158%7Cjob-id%3Dfa1f9dc7ee2154d228f9f840d7d5e4a7%7Cjob-workarea%3D08-05%7Cjob-hierarchy%3D04%7Cjob-salary-benchmark%3D05%7Cjob-industry%3D46%7Cjob-location%3Dmanila%7Cjobtitle%3Dinformation-security-officer&amp;jobjmlp=158&amp;ccuid=47983331922&amp;isAdvanced=1"
  data-selector="registrationForm" id="form">
  <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label is-upgraded" data-upgraded=",MaterialTextfield">
    <input type="text" name="user[FirstName]" id="firstName" data-msg="Please enter a valid first name!" class="mdl-textfield__input" value=""> <label class="mdl-textfield__label" for="firstName">
      <div class="d-inline-flex align-items-center"><i class="material-icons">person</i> First name </div>
    </label>
  </div>
  <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label is-upgraded" data-upgraded=",MaterialTextfield">
    <input type="text" name="user[LastName]" id="lastName" data-msg="Please enter a valid last name!" class="mdl-textfield__input" value=""> <label class="mdl-textfield__label" for="lastName">
      <div class="d-inline-flex align-items-center"><i class="material-icons">person_add</i> Last name </div>
    </label>
  </div>
  <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label is-upgraded" data-upgraded=",MaterialTextfield">
    <input type="text" name="user[UserName]" id="email" data-msg="Please check the spelling. The following symbols are allowed: a-z, 0-9, as well as ! # $ &amp; ' * + - / = ? ^ _ | ~ ." class="mdl-textfield__input" value=""> <label
      class="mdl-textfield__label" for="email">
      <div class="d-inline-flex align-items-center"><i class="material-icons">mail</i> Email address </div>
    </label>
  </div>
  <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label is-upgraded" data-upgraded=",MaterialTextfield">
    <input type="password" name="user[Password]" id="password" data-msg="Password must have at least 8 characters and include a lowercase letter, uppercase letter, number and special character" class="mdl-textfield__input" value=""> <label
      class="mdl-textfield__label" for="password">
      <div class="d-inline-flex align-items-center"><i class="material-icons">lock</i> Password </div>
    </label>
  </div>
  <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label getmdl-select no-success-tick is-upgraded is-dirty" data-upgraded=",MaterialTextfield">
    <input type="text" value="" class="mdl-textfield__input" id="locationCountry" readonly="">
    <input type="hidden" value="DEU" name="user[SearchQuery][LocationCountry]">
    <i class="mdl-icon-toggle__label material-icons">keyboard_arrow_down</i>
    <label for="locationCountry" class="mdl-textfield__label">
      <div class="d-inline-flex align-items-center">
        <i class="material-icons">location_on</i> Country
      </div>
    </label>
    <div class="mdl-menu__container is-upgraded">
      <div class="mdl-menu__outline mdl-menu--bottom-left"></div>
      <ul for="locationCountry" class="mdl-menu mdl-menu--bottom-left mdl-js-menu is-animating" data-upgraded=",MaterialMenu">
        <li class="mdl-menu__item" data-val="ARG" tabindex="-1"> Argentina </li>
        <li class="mdl-menu__item" data-val="AUS" tabindex="-1"> Australia </li>
        <li class="mdl-menu__item" data-val="AUT" tabindex="-1"> Austria </li>
        <li class="mdl-menu__item" data-val="BHR" tabindex="-1"> Bahrain </li>
        <li class="mdl-menu__item" data-val="BEL" tabindex="-1"> Belgium </li>
        <li class="mdl-menu__item" data-val="BRA" tabindex="-1"> Brazil </li>
        <li class="mdl-menu__item" data-val="CAN" tabindex="-1"> Canada </li>
        <li class="mdl-menu__item" data-val="CHL" tabindex="-1"> Chile </li>
        <li class="mdl-menu__item" data-val="COL" tabindex="-1"> Colombia </li>
        <li class="mdl-menu__item" data-val="DNK" tabindex="-1"> Denmark </li>
        <li class="mdl-menu__item" data-val="FIN" tabindex="-1"> Finland </li>
        <li class="mdl-menu__item" data-val="FRA" tabindex="-1"> France </li>
        <li class="mdl-menu__item selected" data-val="DEU" data-selected="true" tabindex="-1"> Germany </li>
        <li class="mdl-menu__item" data-val="HKG" tabindex="-1"> Hong Kong </li>
        <li class="mdl-menu__item" data-val="IND" tabindex="-1"> India </li>
        <li class="mdl-menu__item" data-val="IDN" tabindex="-1"> Indonesia </li>
        <li class="mdl-menu__item" data-val="IRL" tabindex="-1"> Ireland </li>
        <li class="mdl-menu__item" data-val="ITA" tabindex="-1"> Italy </li>
        <li class="mdl-menu__item" data-val="KWT" tabindex="-1"> Kuwait </li>
        <li class="mdl-menu__item" data-val="MYS" tabindex="-1"> Malaysia </li>
        <li class="mdl-menu__item" data-val="MEX" tabindex="-1"> Mexico </li>
        <li class="mdl-menu__item" data-val="NLD" tabindex="-1"> Netherlands </li>
        <li class="mdl-menu__item" data-val="NZL" tabindex="-1"> New Zealand </li>
        <li class="mdl-menu__item" data-val="NOR" tabindex="-1"> Norway </li>
        <li class="mdl-menu__item" data-val="OMN" tabindex="-1"> Oman </li>
        <li class="mdl-menu__item" data-val="PAK" tabindex="-1"> Pakistan </li>
        <li class="mdl-menu__item" data-val="PER" tabindex="-1"> Peru </li>
        <li class="mdl-menu__item" data-val="PHL" tabindex="-1"> Philippines </li>
        <li class="mdl-menu__item" data-val="POL" tabindex="-1"> Poland </li>
        <li class="mdl-menu__item" data-val="PRT" tabindex="-1"> Portugal </li>
        <li class="mdl-menu__item" data-val="QAT" tabindex="-1"> Qatar </li>
        <li class="mdl-menu__item" data-val="SAU" tabindex="-1"> Saudi Arabia </li>
        <li class="mdl-menu__item" data-val="SGP" tabindex="-1"> Singapore </li>
        <li class="mdl-menu__item" data-val="ZAF" tabindex="-1"> South Africa </li>
        <li class="mdl-menu__item" data-val="ESP" tabindex="-1"> Spain </li>
        <li class="mdl-menu__item" data-val="SWE" tabindex="-1"> Sweden </li>
        <li class="mdl-menu__item" data-val="CHE" tabindex="-1"> Switzerland </li>
        <li class="mdl-menu__item" data-val="TUR" tabindex="-1"> Turkey </li>
        <li class="mdl-menu__item" data-val="ARE" tabindex="-1"> United Arab Emirates </li>
        <li class="mdl-menu__item" data-val="GBR" tabindex="-1"> United Kingdom </li>
        <li class="mdl-menu__item" data-val="USA" tabindex="-1"> United States </li>
        <li class="mdl-menu__item" data-val="VEN" tabindex="-1"> Venezuela </li>
      </ul>
    </div>
  </div>
  <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label locationAutocompleteContainer is-upgraded" data-upgraded=",MaterialTextfield">
    <input type="text" name="user[SearchQuery][Location]" id="location" data-msg="We could not find this location in the selected country. Please use a different location or choose a different country."
      class="mdl-textfield__input ui-autocomplete-input" value="" autocomplete="off"> <label class="mdl-textfield__label" for="location">
      <div class="d-inline-flex align-items-center"><i class="material-icons">location_on</i> Location </div>
    </label>
    <script type="text/javascript">
      (function(window, document, $) {
        var autocompleteKeywordRequest = null;
        var autocompleteLocationRequest = null;

        function bindAutocompleteKeyword(inputSelector) {
          $(inputSelector).bind('keydown', function(event) {
            //abort method when enter is pressed
            if (event.keyCode === $.ui.keyCode.ENTER) {
              if (autocompleteKeywordRequest) {
                autocompleteKeywordRequest.abort();
              }
              if (autocompleteLocationRequest) {
                autocompleteLocationRequest.abort();
              }
              return true;
            } else if (event.keyCode === $.ui.keyCode.TAB && $(this).data('autocomplete') && $(this).data('autocomplete').menu.active) {
              // don't navigate away from the field on tab when selecting an item
              event.preventDefault();
            }
          }).autocomplete({
            delay: 100,
            minLength: 2,
            source: function(request, responseCallback) {
              var searchTerm = request.term.split(/,\s*/).pop();
              var countryCode = window.autocompleteCountry || 'DEU';
              if (autocompleteKeywordRequest) {
                autocompleteKeywordRequest.abort();
              }
              autocompleteKeywordRequest = autocomplete(searchTerm, 'keyword', responseCallback, countryCode);
              return true;
            },
            focus: function() {
              // prevent value inserted on focus
              return false;
            },
            select: function(event, ui) {
              this.value = ui.item.value;
              return false;
            },
            open: function(event, ui) {
              if (navigator.userAgent.match(/(iPod|iPhone|iPad)/)) {
                $('.ui-autocomplete').off('menufocus hover mouseover');
              }
            }
          });
        }

        function bindAutocompleteLocation(inputSelector) {
          $(inputSelector).bind('keydown', function(event) {
            //abort method when enter is pressed
            if (event.keyCode === $.ui.keyCode.ENTER) {
              if (autocompleteKeywordRequest) {
                autocompleteKeywordRequest.abort();
              }
              if (autocompleteLocationRequest) {
                autocompleteLocationRequest.abort();
              }
              return true;
            } else if (event.keyCode === $.ui.keyCode.TAB && $(this).data('autocomplete') && $(this).data('autocomplete').menu.active) {
              // don't navigate away from the field on tab when selecting an item
              event.preventDefault();
            }
          }).autocomplete({
            appendTo: '.locationAutocompleteContainer',
            delay: 100,
            minLength: 2,
            source: function(request, responseCallback) {
              var searchTerm = request.term;
              var countryCode = window.autocompleteCountry || 'DEU';
              if (autocompleteLocationRequest) {
                autocompleteLocationRequest.abort();
              }
              autocompleteLocationRequest = autocomplete(searchTerm, 'location', responseCallback, countryCode);
              return true;
            },
            focus: function() {
              // prevent value inserted on focus
              return false;
            },
            select: function(event, ui) {
              this.value = ui.item.value;
              return false;
            },
            open: function(event, ui) {
              if (navigator.userAgent.match(/(iPod|iPhone|iPad)/)) {
                $('.ui-autocomplete').off('menufocus hover mouseover');
              }
            }
          });
        }

        function autocomplete(term, mode, responseCallback, country) {
          var autocompletedTerms = [];
          var validModes = ['keyword', 'location', 'region', 'citynameAndZipcode'];
          var isValidMode = ($.inArray(mode, validModes) >= 0);
          var ajax = null;
          country = ((typeof(country) != 'undefined') && (country.length > 0)) ? '/' + country : '';
          if (isValidMode) {
            var url = '/search/autocomplete/__locale__/__mode__/__term__/__country__';
            url = url.replace('__locale__', window.locale || 'en_US').replace('__mode__', mode).replace('__term__', encodeURIComponent(term)).replace('/__country__', country);
            ajax = $.ajax({
              scriptCharset: 'utf-8',
              contentType: 'application/json; charset-utf-8',
              url: url,
              dataType: 'json',
              type: 'GET',
              async: true,
              context: document.body,
              complete: function(response) {
                var responseObj = new AjaxResponse(response);
                if (responseObj.getStatus() == 'OK') {
                  autocompletedTerms = responseObj.getPayloadContent();
                  if (autocompletedTerms && autocompletedTerms.length > 15) {
                    autocompletedTerms = autocompletedTerms.slice(0, 15);
                  }
                }
                responseCallback(autocompletedTerms);
              }
            });
          }
          return ajax;
        }
        $(document).ready(function() {
          bindAutocompleteLocation('.locationAutocompleteContainer input');
        });
      })(window, document, jQuery);
    </script>
    <ul id="ui-id-3" tabindex="0" class="ui-menu ui-widget ui-widget-content ui-autocomplete ui-front" style="display: none;"></ul>
  </div>
  <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label getmdl-select salary no-success-tick is-upgraded is-dirty" data-upgraded=",MaterialTextfield">
    <input type="text" value="" class="mdl-textfield__input" id="salary" data-default=""
      data-salaries="{&quot;ARG&quot;:{&quot;720000&quot;:&quot;ARS 300,000 - 720,000&quot;,&quot;1200000&quot;:&quot;ARS 720,000 - 1,200,000&quot;,&quot;1680000&quot;:&quot;ARS 1,200,000 - 1,680,000&quot;,&quot;2160000&quot;:&quot;ARS 1,680,000 - 2,160,000&quot;,&quot;2700000&quot;:&quot;ARS 2,160,000 - 2,700,000&quot;,&quot;3300000&quot;:&quot;ARS 2,700,000 - 3,300,000&quot;,&quot;3900000&quot;:&quot;ARS 3,300,000 - 3,900,000&quot;,&quot;-1&quot;:&quot;ARS 3,900,000 +&quot;},&quot;AUS&quot;:{&quot;60000&quot;:&quot;AUD 30,000 - 60,000&quot;,&quot;80000&quot;:&quot;AUD 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;AUD 80,000 - 100,000&quot;,&quot;125000&quot;:&quot;AUD 100,000 - 125,000&quot;,&quot;150000&quot;:&quot;AUD 125,000 - 150,000&quot;,&quot;200000&quot;:&quot;AUD 150,000 - 200,000&quot;,&quot;250000&quot;:&quot;AUD 200,000 - 250,000&quot;,&quot;-1&quot;:&quot;AUD 250,000 +&quot;},&quot;AUT&quot;:{&quot;40000&quot;:&quot;EUR 20,000 - 40,000&quot;,&quot;60000&quot;:&quot;EUR 40,000 - 60,000&quot;,&quot;80000&quot;:&quot;EUR 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;EUR 80,000 - 100,000&quot;,&quot;125000&quot;:&quot;EUR 100,000 - 125,000&quot;,&quot;150000&quot;:&quot;EUR 125,000 - 150,000&quot;,&quot;200000&quot;:&quot;EUR 150,000 - 200,000&quot;,&quot;-1&quot;:&quot;EUR 200,000 +&quot;},&quot;BHR&quot;:{&quot;20000&quot;:&quot;BHD 5,000 - 20,000&quot;,&quot;40000&quot;:&quot;BHD 20,000 - 40,000&quot;,&quot;60000&quot;:&quot;BHD 40,000 - 60,000&quot;,&quot;80000&quot;:&quot;BHD 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;BHD 80,000 - 100,000&quot;,&quot;150000&quot;:&quot;BHD 100,000 - 150,000&quot;,&quot;200000&quot;:&quot;BHD 150,000 - 200,000&quot;,&quot;-1&quot;:&quot;BHD 200,000 +&quot;},&quot;BEL&quot;:{&quot;40000&quot;:&quot;EUR 20,000 - 40,000&quot;,&quot;60000&quot;:&quot;EUR 40,000 - 60,000&quot;,&quot;80000&quot;:&quot;EUR 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;EUR 80,000 - 100,000&quot;,&quot;125000&quot;:&quot;EUR 100,000 - 125,000&quot;,&quot;150000&quot;:&quot;EUR 125,000 - 150,000&quot;,&quot;200000&quot;:&quot;EUR 150,000 - 200,000&quot;,&quot;-1&quot;:&quot;EUR 200,000 +&quot;},&quot;BRA&quot;:{&quot;80000&quot;:&quot;BRL 20,000 - 80,000&quot;,&quot;120000&quot;:&quot;BRL 80,000 - 120,000&quot;,&quot;160000&quot;:&quot;BRL 120,000 - 160,000&quot;,&quot;200000&quot;:&quot;BRL 160,000 - 200,000&quot;,&quot;250000&quot;:&quot;BRL 200,000 - 250,000&quot;,&quot;300000&quot;:&quot;BRL 250,000 - 300,000&quot;,&quot;400000&quot;:&quot;BRL 300,000 - 400,000&quot;,&quot;-1&quot;:&quot;BRL 400,000 +&quot;},&quot;CAN&quot;:{&quot;60000&quot;:&quot;CAD 30,000 - 60,000&quot;,&quot;80000&quot;:&quot;CAD 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;CAD 80,000 - 100,000&quot;,&quot;125000&quot;:&quot;CAD 100,000 - 125,000&quot;,&quot;150000&quot;:&quot;CAD 125,000 - 150,000&quot;,&quot;200000&quot;:&quot;CAD 150,000 - 200,000&quot;,&quot;250000&quot;:&quot;CAD 200,000 - 250,000&quot;,&quot;-1&quot;:&quot;CAD 250,000 +&quot;},&quot;CHL&quot;:{&quot;20000&quot;:&quot;CLP 5,000 - 20,000&quot;,&quot;40000000&quot;:&quot;CLP 20,000,000 - 40,000,000&quot;,&quot;60000000&quot;:&quot;CLP 40,000,000 - 60,000,000&quot;,&quot;80000000&quot;:&quot;CLP 60,000,000 - 80,000,000&quot;,&quot;100000000&quot;:&quot;CLP 80,000,000 - 100,000,000&quot;,&quot;125000000&quot;:&quot;CLP 100,000,000 - 125,000,000&quot;,&quot;150000000&quot;:&quot;CLP 125,000,000 - 150,000,000&quot;,&quot;-1&quot;:&quot;CLP 150,000,000 +&quot;},&quot;COL&quot;:{&quot;40000000&quot;:&quot;COP 10,000,000 - 40,000,000&quot;,&quot;80000000&quot;:&quot;COP 40,000,000 - 80,000,000&quot;,&quot;120000000&quot;:&quot;COP 80,000,000 - 120,000,000&quot;,&quot;200000000&quot;:&quot;COP 120,000,000 - 200,000,000&quot;,&quot;300000000&quot;:&quot;COP 200,000,000 - 300,000,000&quot;,&quot;400000000&quot;:&quot;COP 300,000,000 - 400,000,000&quot;,&quot;500000000&quot;:&quot;COP 400,000,000 - 500,000,000&quot;,&quot;-1&quot;:&quot;COP 500,000,000 +&quot;},&quot;FIN&quot;:{&quot;40000&quot;:&quot;EUR 20,000 - 40,000&quot;,&quot;60000&quot;:&quot;EUR 40,000 - 60,000&quot;,&quot;80000&quot;:&quot;EUR 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;EUR 80,000 - 100,000&quot;,&quot;125000&quot;:&quot;EUR 100,000 - 125,000&quot;,&quot;150000&quot;:&quot;EUR 125,000 - 150,000&quot;,&quot;200000&quot;:&quot;EUR 150,000 - 200,000&quot;,&quot;-1&quot;:&quot;EUR 200,000 +&quot;},&quot;DNK&quot;:{&quot;400000&quot;:&quot;DKK 200,000 - 400,000&quot;,&quot;600000&quot;:&quot;DKK 400,000 - 600,000&quot;,&quot;800000&quot;:&quot;DKK 600,000 - 800,000&quot;,&quot;1000000&quot;:&quot;DKK 800,000 - 1,000,000&quot;,&quot;1250000&quot;:&quot;DKK 1,000,000 - 1,250,000&quot;,&quot;1500000&quot;:&quot;DKK 1,250,000 - 1,500,000&quot;,&quot;2000000&quot;:&quot;DKK 1,500,000 - 2,000,000&quot;,&quot;-1&quot;:&quot;DKK 2,000,000 +&quot;},&quot;FRA&quot;:{&quot;40000&quot;:&quot;EUR 20,000 - 40,000&quot;,&quot;60000&quot;:&quot;EUR 40,000 - 60,000&quot;,&quot;80000&quot;:&quot;EUR 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;EUR 80,000 - 100,000&quot;,&quot;125000&quot;:&quot;EUR 100,000 - 125,000&quot;,&quot;150000&quot;:&quot;EUR 125,000 - 150,000&quot;,&quot;200000&quot;:&quot;EUR 150,000 - 200,000&quot;,&quot;-1&quot;:&quot;EUR 200,000 +&quot;},&quot;DEU&quot;:{&quot;40000&quot;:&quot;EUR 20,000 - 40,000&quot;,&quot;60000&quot;:&quot;EUR 40,000 - 60,000&quot;,&quot;80000&quot;:&quot;EUR 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;EUR 80,000 - 100,000&quot;,&quot;125000&quot;:&quot;EUR 100,000 - 125,000&quot;,&quot;150000&quot;:&quot;EUR 125,000 - 150,000&quot;,&quot;200000&quot;:&quot;EUR 150,000 - 200,000&quot;,&quot;-1&quot;:&quot;EUR 200,000 +&quot;},&quot;GBR&quot;:{&quot;40000&quot;:&quot;GBP 10,000 - 40,000&quot;,&quot;60000&quot;:&quot;GBP 40,000 - 60,000&quot;,&quot;80000&quot;:&quot;GBP 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;GBP 80,000 - 100,000&quot;,&quot;125000&quot;:&quot;GBP 100,000 - 125,000&quot;,&quot;150000&quot;:&quot;GBP 125,000 - 150,000&quot;,&quot;200000&quot;:&quot;GBP 150,000 - 200,000&quot;,&quot;-1&quot;:&quot;GBP 200,000 +&quot;},&quot;HKG&quot;:{&quot;400000&quot;:&quot;HKD 100,000 - 400,000&quot;,&quot;600000&quot;:&quot;HKD 400,000 - 600,000&quot;,&quot;800000&quot;:&quot;HKD 600,000 - 800,000&quot;,&quot;1000000&quot;:&quot;HKD 800,000 - 1,000,000&quot;,&quot;1250000&quot;:&quot;HKD 1,000,000 - 1,250,000&quot;,&quot;1500000&quot;:&quot;HKD 1,250,000 - 1,500,000&quot;,&quot;2000000&quot;:&quot;HKD 1,500,000 - 2,000,000&quot;,&quot;-1&quot;:&quot;HKD 2,000,000 +&quot;},&quot;IND&quot;:{&quot;750000&quot;:&quot;INR 100,000 - 750,000&quot;,&quot;1000000&quot;:&quot;INR 750,000 - 1,000,000&quot;,&quot;1500000&quot;:&quot;INR 1,000,000 - 1,500,000&quot;,&quot;2000000&quot;:&quot;INR 1,500,000 - 2,000,000&quot;,&quot;3000000&quot;:&quot;INR 2,000,000 - 3,000,000&quot;,&quot;3500000&quot;:&quot;INR 3,000,000 - 3,500,000&quot;,&quot;4000000&quot;:&quot;INR 3,500,000 - 4,000,000&quot;,&quot;-1&quot;:&quot;INR 4,000,000 +&quot;},&quot;IDN&quot;:{&quot;100000000&quot;:&quot;IDR 12,000,000 - 100,000,000&quot;,&quot;200000000&quot;:&quot;IDR 100,000,000 - 200,000,000&quot;,&quot;300000000&quot;:&quot;IDR 200,000,000 - 300,000,000&quot;,&quot;400000000&quot;:&quot;IDR 300,000,000 - 400,000,000&quot;,&quot;450000000&quot;:&quot;IDR 400,000,000 - 450,000,000&quot;,&quot;550000000&quot;:&quot;IDR 450,000,000 - 550,000,000&quot;,&quot;650000000&quot;:&quot;IDR 550,000,000 - 650,000,000&quot;,&quot;-1&quot;:&quot;IDR 650,000,000 +&quot;},&quot;IRL&quot;:{&quot;40000&quot;:&quot;EUR 20,000 - 40,000&quot;,&quot;60000&quot;:&quot;EUR 40,000 - 60,000&quot;,&quot;80000&quot;:&quot;EUR 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;EUR 80,000 - 100,000&quot;,&quot;125000&quot;:&quot;EUR 100,000 - 125,000&quot;,&quot;150000&quot;:&quot;EUR 125,000 - 150,000&quot;,&quot;200000&quot;:&quot;EUR 150,000 - 200,000&quot;,&quot;-1&quot;:&quot;EUR 200,000 +&quot;},&quot;ITA&quot;:{&quot;30000&quot;:&quot;EUR 10,000 - 30,000&quot;,&quot;50000&quot;:&quot;EUR 30,000 - 50,000&quot;,&quot;70000&quot;:&quot;EUR 50,000 - 70,000&quot;,&quot;90000&quot;:&quot;EUR 70,000 - 90,000&quot;,&quot;110000&quot;:&quot;EUR 90,000 - 110,000&quot;,&quot;125000&quot;:&quot;EUR 110,000 - 125,000&quot;,&quot;150000&quot;:&quot;EUR 125,000 - 150,000&quot;,&quot;-1&quot;:&quot;EUR 150,000 +&quot;},&quot;KWT&quot;:{&quot;15000&quot;:&quot;KWD 3,000 - 15,000&quot;,&quot;30000&quot;:&quot;KWD 15,000 - 30,000&quot;,&quot;50000&quot;:&quot;KWD 30,000 - 50,000&quot;,&quot;70000&quot;:&quot;KWD 50,000 - 70,000&quot;,&quot;90000&quot;:&quot;KWD 70,000 - 90,000&quot;,&quot;120000&quot;:&quot;KWD 90,000 - 120,000&quot;,&quot;150000&quot;:&quot;KWD 120,000 - 150,000&quot;,&quot;-1&quot;:&quot;KWD 150,000 +&quot;},&quot;MYS&quot;:{&quot;100000&quot;:&quot;MYR 20,000 - 100,000&quot;,&quot;150000&quot;:&quot;MYR 100,000 - 150,000&quot;,&quot;200000&quot;:&quot;MYR 150,000 - 200,000&quot;,&quot;250000&quot;:&quot;MYR 200,000 - 250,000&quot;,&quot;300000&quot;:&quot;MYR 250,000 - 300,000&quot;,&quot;400000&quot;:&quot;MYR 300,000 - 400,000&quot;,&quot;500000&quot;:&quot;MYR 400,000 - 500,000&quot;,&quot;-1&quot;:&quot;MYR 500,000 +&quot;},&quot;MEX&quot;:{&quot;200000&quot;:&quot;MXN 50,000 - 200,000&quot;,&quot;400000&quot;:&quot;MXN 200,000 - 400,000&quot;,&quot;600000&quot;:&quot;MXN 400,000 - 600,000&quot;,&quot;800000&quot;:&quot;MXN 600,000 - 800,000&quot;,&quot;1000000&quot;:&quot;MXN 800,000 - 1,000,000&quot;,&quot;1500000&quot;:&quot;MXN 1,000,000 - 1,500,000&quot;,&quot;2000000&quot;:&quot;MXN 1,500,000 - 2,000,000&quot;,&quot;-1&quot;:&quot;MXN 2,000,000 +&quot;},&quot;NLD&quot;:{&quot;40000&quot;:&quot;EUR 20,000 - 40,000&quot;,&quot;60000&quot;:&quot;EUR 40,000 - 60,000&quot;,&quot;80000&quot;:&quot;EUR 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;EUR 80,000 - 100,000&quot;,&quot;125000&quot;:&quot;EUR 100,000 - 125,000&quot;,&quot;150000&quot;:&quot;EUR 125,000 - 150,000&quot;,&quot;200000&quot;:&quot;EUR 150,000 - 200,000&quot;,&quot;-1&quot;:&quot;EUR 200,000 +&quot;},&quot;NZL&quot;:{&quot;60000&quot;:&quot;NZD 30,000 - 60,000&quot;,&quot;80000&quot;:&quot;NZD 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;NZD 80,000 - 100,000&quot;,&quot;125000&quot;:&quot;NZD 100,000 - 125,000&quot;,&quot;150000&quot;:&quot;NZD 125,000 - 150,000&quot;,&quot;200000&quot;:&quot;NZD 150,000 - 200,000&quot;,&quot;250000&quot;:&quot;NZD 200,000 - 250,000&quot;,&quot;-1&quot;:&quot;NZD 250,000 +&quot;},&quot;NOR&quot;:{&quot;400000&quot;:&quot;NOK 100,000 - 400,000&quot;,&quot;600000&quot;:&quot;NOK 400,000 - 600,000&quot;,&quot;800000&quot;:&quot;NOK 600,000 - 800,000&quot;,&quot;1000000&quot;:&quot;NOK 800,000 - 1,000,000&quot;,&quot;1250000&quot;:&quot;NOK 1,000,000 - 1,250,000&quot;,&quot;1500000&quot;:&quot;NOK 1,250,000 - 1,500,000&quot;,&quot;2000000&quot;:&quot;NOK 1,500,000 - 2,000,000&quot;,&quot;-1&quot;:&quot;NOK 2,000,000 +&quot;},&quot;OMN&quot;:{&quot;200000&quot;:&quot;OMR 5,000 - 200,000&quot;,&quot;400000&quot;:&quot;OMR 200,000 - 400,000&quot;,&quot;600000&quot;:&quot;OMR 400,000 - 600,000&quot;,&quot;800000&quot;:&quot;OMR 600,000 - 800,000&quot;,&quot;1000000&quot;:&quot;OMR 800,000 - 1,000,000&quot;,&quot;1500000&quot;:&quot;OMR 1,000,000 - 1,500,000&quot;,&quot;2000000&quot;:&quot;OMR 1,500,000 - 2,000,000&quot;,&quot;-1&quot;:&quot;OMR 2,000,000 +&quot;},&quot;PAK&quot;:{&quot;300000&quot;:&quot;PKR 100,000 - 300,000&quot;,&quot;600000&quot;:&quot;PKR 300,000 - 600,000&quot;,&quot;800000&quot;:&quot;PKR 600,000 - 800,000&quot;,&quot;1000000&quot;:&quot;PKR 800,000 - 1,000,000&quot;,&quot;1500000&quot;:&quot;PKR 1,000,000 - 1,500,000&quot;,&quot;2000000&quot;:&quot;PKR 1,500,000 - 2,000,000&quot;,&quot;5000000&quot;:&quot;PKR 2,000,000 - 5,000,000&quot;,&quot;-1&quot;:&quot;PKR 5,000,000 +&quot;},&quot;PER&quot;:{&quot;35000&quot;:&quot;PEN 10,000 - 35,000&quot;,&quot;50000&quot;:&quot;PEN 35,000 - 50,000&quot;,&quot;70000&quot;:&quot;PEN 50,000 - 70,000&quot;,&quot;100000&quot;:&quot;PEN 70,000 - 100,000&quot;,&quot;150000&quot;:&quot;PEN 100,000 - 150,000&quot;,&quot;200000&quot;:&quot;PEN 150,000 - 200,000&quot;,&quot;250000&quot;:&quot;PEN 200,000 - 250,000&quot;,&quot;-1&quot;:&quot;PEN 250,000 +&quot;},&quot;PHL&quot;:{&quot;700000&quot;:&quot;PHP 130,000 - 700,000&quot;,&quot;1200000&quot;:&quot;PHP 700,000 - 1,200,000&quot;,&quot;2000000&quot;:&quot;PHP 1,200,000 - 2,000,000&quot;,&quot;3000000&quot;:&quot;PHP 2,000,000 - 3,000,000&quot;,&quot;4000000&quot;:&quot;PHP 3,000,000 - 4,000,000&quot;,&quot;5000000&quot;:&quot;PHP 4,000,000 - 5,000,000&quot;,&quot;7000000&quot;:&quot;PHP 5,000,000 - 7,000,000&quot;,&quot;-1&quot;:&quot;PHP 7,000,000 +&quot;},&quot;POL&quot;:{&quot;60000&quot;:&quot;PLN 20,000 - 60,000&quot;,&quot;100000&quot;:&quot;PLN 60,000 - 100,000&quot;,&quot;150000&quot;:&quot;PLN 100,000 - 150,000&quot;,&quot;200000&quot;:&quot;PLN 150,000 - 200,000&quot;,&quot;300000&quot;:&quot;PLN 200,000 - 300,000&quot;,&quot;400000&quot;:&quot;PLN 300,000 - 400,000&quot;,&quot;500000&quot;:&quot;PLN 400,000 - 500,000&quot;,&quot;-1&quot;:&quot;PLN 500,000 +&quot;},&quot;PRT&quot;:{&quot;20000&quot;:&quot;EUR 10,000 - 20,000&quot;,&quot;30000&quot;:&quot;EUR 20,000 - 30,000&quot;,&quot;40000&quot;:&quot;EUR 30,000 - 40,000&quot;,&quot;60000&quot;:&quot;EUR 40,000 - 60,000&quot;,&quot;80000&quot;:&quot;EUR 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;EUR 80,000 - 100,000&quot;,&quot;120000&quot;:&quot;EUR 100,000 - 120,000&quot;,&quot;-1&quot;:&quot;EUR 120,000 +&quot;},&quot;QAT&quot;:{&quot;200000&quot;:&quot;QAR 10,000 - 200,000&quot;,&quot;400000&quot;:&quot;QAR 200,000 - 400,000&quot;,&quot;600000&quot;:&quot;QAR 400,000 - 600,000&quot;,&quot;800000&quot;:&quot;QAR 600,000 - 800,000&quot;,&quot;1000000&quot;:&quot;QAR 800,000 - 1,000,000&quot;,&quot;1500000&quot;:&quot;QAR 1,000,000 - 1,500,000&quot;,&quot;2000000&quot;:&quot;QAR 1,500,000 - 2,000,000&quot;,&quot;-1&quot;:&quot;QAR 2,000,000 +&quot;},&quot;SAU&quot;:{&quot;120000&quot;:&quot;SAR 48,000 - 120,000&quot;,&quot;150000&quot;:&quot;SAR 120,000 - 150,000&quot;,&quot;200000&quot;:&quot;SAR 150,000 - 200,000&quot;,&quot;300000&quot;:&quot;SAR 200,000 - 300,000&quot;,&quot;400000&quot;:&quot;SAR 300,000 - 400,000&quot;,&quot;600000&quot;:&quot;SAR 400,000 - 600,000&quot;,&quot;800000&quot;:&quot;SAR 600,000 - 800,000&quot;,&quot;-1&quot;:&quot;SAR 800,000 +&quot;},&quot;SGP&quot;:{&quot;60000&quot;:&quot;SGD 20,000 - 60,000&quot;,&quot;80000&quot;:&quot;SGD 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;SGD 80,000 - 100,000&quot;,&quot;125000&quot;:&quot;SGD 100,000 - 125,000&quot;,&quot;150000&quot;:&quot;SGD 125,000 - 150,000&quot;,&quot;200000&quot;:&quot;SGD 150,000 - 200,000&quot;,&quot;250000&quot;:&quot;SGD 200,000 - 250,000&quot;,&quot;-1&quot;:&quot;SGD 250,000 +&quot;},&quot;ZAF&quot;:{&quot;400000&quot;:&quot;ZAR 100,000 - 400,000&quot;,&quot;600000&quot;:&quot;ZAR 400,000 - 600,000&quot;,&quot;800000&quot;:&quot;ZAR 600,000 - 800,000&quot;,&quot;1000000&quot;:&quot;ZAR 800,000 - 1,000,000&quot;,&quot;1250000&quot;:&quot;ZAR 1,000,000 - 1,250,000&quot;,&quot;1500000&quot;:&quot;ZAR 1,250,000 - 1,500,000&quot;,&quot;2000000&quot;:&quot;ZAR 1,500,000 - 2,000,000&quot;,&quot;-1&quot;:&quot;ZAR 2,000,000 +&quot;},&quot;ESP&quot;:{&quot;30000&quot;:&quot;EUR 10,000 - 30,000&quot;,&quot;50000&quot;:&quot;EUR 30,000 - 50,000&quot;,&quot;70000&quot;:&quot;EUR 50,000 - 70,000&quot;,&quot;90000&quot;:&quot;EUR 70,000 - 90,000&quot;,&quot;110000&quot;:&quot;EUR 90,000 - 110,000&quot;,&quot;125000&quot;:&quot;EUR 110,000 - 125,000&quot;,&quot;150000&quot;:&quot;EUR 125,000 - 150,000&quot;,&quot;-1&quot;:&quot;EUR 150,000 +&quot;},&quot;SWE&quot;:{&quot;400000&quot;:&quot;SEK 100,000 - 400,000&quot;,&quot;600000&quot;:&quot;SEK 400,000 - 600,000&quot;,&quot;800000&quot;:&quot;SEK 600,000 - 800,000&quot;,&quot;1000000&quot;:&quot;SEK 800,000 - 1,000,000&quot;,&quot;1250000&quot;:&quot;SEK 1,000,000 - 1,250,000&quot;,&quot;1500000&quot;:&quot;SEK 1,250,000 - 1,500,000&quot;,&quot;2000000&quot;:&quot;SEK 1,500,000 - 2,000,000&quot;,&quot;-1&quot;:&quot;SEK 2,000,000 +&quot;},&quot;CHE&quot;:{&quot;80000&quot;:&quot;CHF 30,000 - 80,000&quot;,&quot;100000&quot;:&quot;CHF 80,000 - 100,000&quot;,&quot;125000&quot;:&quot;CHF 100,000 - 125,000&quot;,&quot;150000&quot;:&quot;CHF 125,000 - 150,000&quot;,&quot;200000&quot;:&quot;CHF 150,000 - 200,000&quot;,&quot;250000&quot;:&quot;CHF 200,000 - 250,000&quot;,&quot;300000&quot;:&quot;CHF 250,000 - 300,000&quot;,&quot;-1&quot;:&quot;CHF 300,000 +&quot;},&quot;TUR&quot;:{&quot;90000&quot;:&quot;TRY 60,000 - 90,000&quot;,&quot;130000&quot;:&quot;TRY 90,000 - 130,000&quot;,&quot;150000&quot;:&quot;TRY 130,000 - 150,000&quot;,&quot;180000&quot;:&quot;TRY 150,000 - 180,000&quot;,&quot;240000&quot;:&quot;TRY 180,000 - 240,000&quot;,&quot;300000&quot;:&quot;TRY 240,000 - 300,000&quot;,&quot;350000&quot;:&quot;TRY 300,000 - 350,000&quot;,&quot;-1&quot;:&quot;TRY 350,000 +&quot;},&quot;USA&quot;:{&quot;60000&quot;:&quot;USD 10,000 - 60,000&quot;,&quot;80000&quot;:&quot;USD 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;USD 80,000 - 100,000&quot;,&quot;125000&quot;:&quot;USD 100,000 - 125,000&quot;,&quot;150000&quot;:&quot;USD 125,000 - 150,000&quot;,&quot;200000&quot;:&quot;USD 150,000 - 200,000&quot;,&quot;250000&quot;:&quot;USD 200,000 - 250,000&quot;,&quot;-1&quot;:&quot;USD 250,000 +&quot;},&quot;ARE&quot;:{&quot;200000&quot;:&quot;AED 50,000 - 200,000&quot;,&quot;400000&quot;:&quot;AED 200,000 - 400,000&quot;,&quot;600000&quot;:&quot;AED 400,000 - 600,000&quot;,&quot;800000&quot;:&quot;AED 600,000 - 800,000&quot;,&quot;1000000&quot;:&quot;AED 800,000 - 1,000,000&quot;,&quot;1500000&quot;:&quot;AED 1,000,000 - 1,500,000&quot;,&quot;2000000&quot;:&quot;AED 1,500,000 - 2,000,000&quot;,&quot;-1&quot;:&quot;AED 2,000,000 +&quot;},&quot;VEN&quot;:{&quot;12000000&quot;:&quot;VES 5,000,000 - 12,000,000&quot;,&quot;18000000&quot;:&quot;VES 12,000,000 - 18,000,000&quot;,&quot;25000000&quot;:&quot;VES 18,000,000 - 25,000,000&quot;,&quot;35000000&quot;:&quot;VES 25,000,000 - 35,000,000&quot;,&quot;45000000&quot;:&quot;VES 35,000,000 - 45,000,000&quot;,&quot;50000000&quot;:&quot;VES 45,000,000 - 50,000,000&quot;,&quot;60000000&quot;:&quot;VES 50,000,000 - 60,000,000&quot;,&quot;-1&quot;:&quot;VES 60,000,000 +&quot;},&quot;--&quot;:{&quot;40000&quot;:&quot;EUR 20,000 - 40,000&quot;,&quot;60000&quot;:&quot;EUR 40,000 - 60,000&quot;,&quot;80000&quot;:&quot;EUR 60,000 - 80,000&quot;,&quot;100000&quot;:&quot;EUR 80,000 - 100,000&quot;,&quot;125000&quot;:&quot;EUR 100,000 - 125,000&quot;,&quot;150000&quot;:&quot;EUR 125,000 - 150,000&quot;,&quot;200000&quot;:&quot;EUR 150,000 - 200,000&quot;,&quot;-1&quot;:&quot;EUR 200,000 +&quot;}}"
      readonly="">
    <input type="hidden" value="40000" name="user[SearchQuery][SalaryExpectations]">
    <i class="mdl-icon-toggle__label material-icons">keyboard_arrow_down</i>
    <label for="salary" class="mdl-textfield__label">
      <div class="d-inline-flex align-items-center">
        <i class="material-icons">trending_up</i> Salary expectations
      </div>
    </label>
    <div class="mdl-menu__container is-upgraded">
      <div class="mdl-menu__outline mdl-menu--bottom-left"></div>
      <ul for="salary" class="mdl-menu mdl-menu--bottom-left mdl-js-menu is-animating" data-upgraded=",MaterialMenu">
        <li class="mdl-menu__item selected" data-val="40000" tabindex="-1">EUR 20,000 - 40,000</li>
        <li class="mdl-menu__item" data-val="60000" tabindex="-1">EUR 40,000 - 60,000</li>
        <li class="mdl-menu__item" data-val="80000" tabindex="-1">EUR 60,000 - 80,000</li>
        <li class="mdl-menu__item" data-val="100000" tabindex="-1">EUR 80,000 - 100,000</li>
        <li class="mdl-menu__item" data-val="125000" tabindex="-1">EUR 100,000 - 125,000</li>
        <li class="mdl-menu__item" data-val="150000" tabindex="-1">EUR 125,000 - 150,000</li>
        <li class="mdl-menu__item" data-val="200000" tabindex="-1">EUR 150,000 - 200,000</li>
        <li class="mdl-menu__item" data-val="-1" tabindex="-1">EUR 200,000 +</li>
      </ul>
    </div>
  </div>
  <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label no-success-tick" data-upgraded=",MaterialTextfield">
    <i class="material-icons material-icons-mselect">work</i>
    <!-- bo:module_registration_views_partials_viewhelper_multiChannelSelect -->
    <div class="select mSelect" tabindex="0">
      <div class="mSelect__toggle form-control">
        <span data-placeholder="Functional area" class="empty">Functional area</span>
        <i class="mdl-icon-toggle__label material-icons">keyboard_arrow_down</i>
      </div>
      <select name="user[SearchQuery][Channels][]" id="channel" class="mSelect__options" multiple="multiple" data-msg="Please select your functional area!" style="display: none;">
        <option value="5" data-parent="0" data-level="1">Bio &amp; Pharmacology &amp; Health</option>
        <option value="12" data-parent="0" data-level="1">Consulting</option>
        <option value="9" data-parent="0" data-level="1">Engineering</option>
        <option value="1" data-parent="0" data-level="1">Finance</option>
        <option value="2" data-parent="0" data-level="1">Human Resources</option>
        <option value="8" data-parent="0" data-level="1">IT &amp; Technology</option>
        <option value="3" data-parent="0" data-level="1">Legal</option>
        <option value="6" data-parent="0" data-level="1">Management &amp; Operations</option>
        <option value="4" data-parent="0" data-level="1">Marketing</option>
        <option value="10" data-parent="0" data-level="1">Other</option>
        <option value="7" data-parent="0" data-level="1">Sales</option>
        <option value="40" data-parent="4" data-level="2">Advertising</option>
        <option value="143" data-parent="10" data-level="2">Agriculture &amp; Crop Production</option>
        <option value="31" data-parent="3" data-level="2">Antitrust &amp; Competition Law</option>
        <option value="35" data-parent="3" data-level="2">Arbitration</option>
        <option value="81" data-parent="9" data-level="2">Architecture, Planning &amp; Construction</option>
        <option value="101" data-parent="10" data-level="2">Art &amp; Culture</option>
        <option value="96" data-parent="10" data-level="2">Assistance</option>
        <option value="14" data-parent="1" data-level="2">Audit, Taxes &amp; Accounting</option>
        <option value="86" data-parent="9" data-level="2">Automotive Engineering</option>
        <option value="87" data-parent="9" data-level="2">Aviation &amp; Aerospace</option>
        <option value="15" data-parent="1" data-level="2">Banking &amp; Lending</option>
        <option value="51" data-parent="5" data-level="2">Biology, Biotech &amp; Chemistry</option>
        <option value="59" data-parent="6" data-level="2">Business Development &amp; Strategy</option>
        <option value="138" data-parent="9" data-level="2">Business Engineering &amp; Management</option>
        <option value="131" data-parent="6" data-level="2">Business Intelligence &amp; Analysis</option>
        <option value="66" data-parent="6" data-level="2">Change Management &amp; Restructuring</option>
        <option value="142" data-parent="10" data-level="2">Charity</option>
        <option value="43" data-parent="4" data-level="2">Communication &amp; PR</option>
        <option value="22" data-parent="2" data-level="2">Compensation &amp; Benefits</option>
        <option value="130" data-parent="6" data-level="2">Compliance &amp; Regulatory Affairs</option>
        <option value="32" data-parent="3" data-level="2">Construction &amp; Real Estate Law</option>
        <option value="13" data-parent="1" data-level="2">Controlling</option>
        <option value="124" data-parent="3" data-level="2">Copyright &amp; Intellectual Property</option>
        <option value="16" data-parent="1" data-level="2">Corporate Finance &amp; Strategic Planning</option>
        <option value="38" data-parent="3" data-level="2">Corporate Law</option>
        <option value="44" data-parent="4" data-level="2">Creative</option>
        <option value="58" data-parent="6" data-level="2">Customer Service</option>
        <option value="71" data-parent="8" data-level="2">Database, Analytics &amp; BI</option>
        <option value="82" data-parent="9" data-level="2">Design &amp; Development</option>
        <option value="132" data-parent="6" data-level="2">E-Commerce</option>
        <option value="84" data-parent="9" data-level="2">Electrical &amp; Energy Engineering</option>
        <option value="30" data-parent="3" data-level="2">Employment Law</option>
        <option value="117" data-parent="12" data-level="2">Engineering Consulting</option>
        <option value="42" data-parent="4" data-level="2">Event Management</option>
        <option value="20" data-parent="1" data-level="2">Finance &amp; Insurance</option>
        <option value="111" data-parent="12" data-level="2">Finance Consulting</option>
        <option value="33" data-parent="3" data-level="2">Finance, Financial Services &amp; Funds</option>
        <option value="17" data-parent="1" data-level="2">Financial Advice &amp; Private Banking</option>
        <option value="146" data-parent="10" data-level="2">Food Production &amp; Safety</option>
        <option value="24" data-parent="2" data-level="2">General HR</option>
        <option value="119" data-parent="7" data-level="2">General Sales</option>
        <option value="98" data-parent="10" data-level="2">Health, Safety &amp; Environment</option>
        <option value="52" data-parent="5" data-level="2">Healthcare</option>
        <option value="100" data-parent="10" data-level="2">Hospitality &amp; Leisure</option>
        <option value="27" data-parent="2" data-level="2">HR &amp; Organizational Development</option>
        <option value="29" data-parent="2" data-level="2">HR Controlling</option>
        <option value="28" data-parent="2" data-level="2">HR Marketing &amp; Recruiting</option>
        <option value="123" data-parent="2" data-level="2">HR Services</option>
        <option value="26" data-parent="2" data-level="2">HR Strategy &amp; Management</option>
        <option value="112" data-parent="12" data-level="2">Human Capital</option>
        <option value="34" data-parent="3" data-level="2">Industrial Property Rights</option>
        <option value="151" data-parent="12" data-level="2">Insurance Consulting</option>
        <option value="18" data-parent="1" data-level="2">Investing &amp; Investment Banking</option>
        <option value="133" data-parent="7" data-level="2">IT &amp; Software Sales</option>
        <option value="72" data-parent="8" data-level="2">IT Management &amp; IT Project Management</option>
        <option value="80" data-parent="8" data-level="2">IT Sales</option>
        <option value="116" data-parent="12" data-level="2">IT, Technology &amp; SAP</option>
        <option value="152" data-parent="12" data-level="2">Legal Consulting</option>
        <option value="149" data-parent="12" data-level="2">Life Science &amp; Pharmacology &amp; Health</option>
        <option value="139" data-parent="9" data-level="2">Maintenance &amp; Service</option>
        <option value="61" data-parent="6" data-level="2">Management &amp; Leadership</option>
        <option value="114" data-parent="12" data-level="2">Management &amp; Strategy</option>
        <option value="137" data-parent="9" data-level="2">Manufacturing &amp; Production</option>
        <option value="45" data-parent="4" data-level="2">Market Research &amp; Market Analysis</option>
        <option value="113" data-parent="12" data-level="2">Marketing &amp; Sales</option>
        <option value="49" data-parent="4" data-level="2">Marketing Management</option>
        <option value="95" data-parent="9" data-level="2">Measurement &amp; Control Technology</option>
        <option value="88" data-parent="9" data-level="2">Mechanical Engineering and Toolmaking</option>
        <option value="50" data-parent="4" data-level="2">Media &amp; Information</option>
        <option value="134" data-parent="7" data-level="2">Medical &amp; Pharmaceutical Sales</option>
        <option value="126" data-parent="5" data-level="2">Medical Teaching</option>
        <option value="141" data-parent="9" data-level="2">Medical Technology</option>
        <option value="125" data-parent="5" data-level="2">Medical, Bio &amp; Pharmaceutical Sales</option>
        <option value="83" data-parent="9" data-level="2">Mining &amp; Raw Material Production</option>
        <option value="73" data-parent="8" data-level="2">Networks &amp; Systems</option>
        <option value="46" data-parent="4" data-level="2">Online Marketing</option>
        <option value="129" data-parent="6" data-level="2">Operations &amp; Business Administration</option>
        <option value="120" data-parent="3" data-level="2">Other Legal Services</option>
        <option value="54" data-parent="5" data-level="2">Pharmacology</option>
        <option value="53" data-parent="5" data-level="2">Physicians &amp; Doctors</option>
        <option value="93" data-parent="9" data-level="2">Physics</option>
        <option value="62" data-parent="6" data-level="2">Plant, Facility &amp; Center Management</option>
        <option value="91" data-parent="9" data-level="2">Plastics &amp; Process Engineering</option>
        <option value="69" data-parent="7" data-level="2">Pre &amp; Post Sales Support</option>
        <option value="41" data-parent="4" data-level="2">Product &amp; Brand Marketing</option>
        <option value="128" data-parent="6" data-level="2">Product Management</option>
        <option value="74" data-parent="8" data-level="2">Professional Services</option>
        <option value="63" data-parent="6" data-level="2">Project &amp; Process Management</option>
        <option value="39" data-parent="3" data-level="2">Public Law</option>
        <option value="150" data-parent="12" data-level="2">Public Sector</option>
        <option value="145" data-parent="10" data-level="2">Public Sector, Administration &amp; Politics</option>
        <option value="60" data-parent="6" data-level="2">Purchasing &amp; Procurement</option>
        <option value="140" data-parent="9" data-level="2">Quality Engineering</option>
        <option value="75" data-parent="8" data-level="2">Quality Management</option>
        <option value="64" data-parent="6" data-level="2">Quality Management &amp; Operations</option>
        <option value="21" data-parent="1" data-level="2">Real Estate</option>
        <option value="55" data-parent="5" data-level="2">Research, development and laboratory</option>
        <option value="36" data-parent="3" data-level="2">Restructuring &amp; Insolvency</option>
        <option value="19" data-parent="1" data-level="2">Risk Management &amp; Quantitative Analysis</option>
        <option value="70" data-parent="7" data-level="2">Sales Management</option>
        <option value="136" data-parent="8" data-level="2">SAP</option>
        <option value="102" data-parent="10" data-level="2">Science, Research and Teaching</option>
        <option value="78" data-parent="8" data-level="2">Software Architecture &amp; Engineering</option>
        <option value="77" data-parent="8" data-level="2">Software Development</option>
        <option value="144" data-parent="10" data-level="2">Sports</option>
        <option value="115" data-parent="12" data-level="2">Supply Chain &amp; Logistics</option>
        <option value="65" data-parent="6" data-level="2">Supply Chain, Logistics &amp; Transportation</option>
        <option value="37" data-parent="3" data-level="2">Tax Law</option>
        <option value="135" data-parent="7" data-level="2">Technical Sales</option>
        <option value="92" data-parent="9" data-level="2">Technical Sales Engineering</option>
        <option value="79" data-parent="8" data-level="2">Technical Support &amp; Administration</option>
        <option value="89" data-parent="9" data-level="2">Telecommunication &amp; Information Technology</option>
        <option value="147" data-parent="10" data-level="2">Textiles</option>
        <option value="127" data-parent="6" data-level="2">Trade, Import &amp; Export</option>
        <option value="97" data-parent="10" data-level="2">Training &amp; Coaching</option>
        <option value="148" data-parent="10" data-level="2">Utilities Sector</option>
      </select>
      <div class="mSelect__tree">
        <div class="mSelect__selections">
          <div class="mSelect__section" data-value="1">
            <div class="mSelect__title" data-value="1"><input type="checkbox" id="checkbox-0-1"><label id="parent-0-1" for="checkbox-0-1"><span>Finance<span></span></span></label></div>
            <div class="mSelect__item" data-value="14" style="display: none;"><input type="checkbox" id="checkbox-0-14"><label for="checkbox-0-14"><span>Audit, Taxes &amp; Accounting</span></label></div>
            <div class="mSelect__item" data-value="15" style="display: none;"><input type="checkbox" id="checkbox-0-15"><label for="checkbox-0-15"><span>Banking &amp; Lending</span></label></div>
            <div class="mSelect__item" data-value="13" style="display: none;"><input type="checkbox" id="checkbox-0-13"><label for="checkbox-0-13"><span>Controlling</span></label></div>
            <div class="mSelect__item" data-value="16" style="display: none;"><input type="checkbox" id="checkbox-0-16"><label for="checkbox-0-16"><span>Corporate Finance &amp; Strategic Planning</span></label></div>
            <div class="mSelect__item" data-value="20" style="display: none;"><input type="checkbox" id="checkbox-0-20"><label for="checkbox-0-20"><span>Finance &amp; Insurance</span></label></div>
            <div class="mSelect__item" data-value="17" style="display: none;"><input type="checkbox" id="checkbox-0-17"><label for="checkbox-0-17"><span>Financial Advice &amp; Private Banking</span></label></div>
            <div class="mSelect__item" data-value="18" style="display: none;"><input type="checkbox" id="checkbox-0-18"><label for="checkbox-0-18"><span>Investing &amp; Investment Banking</span></label></div>
            <div class="mSelect__item" data-value="21" style="display: none;"><input type="checkbox" id="checkbox-0-21"><label for="checkbox-0-21"><span>Real Estate</span></label></div>
            <div class="mSelect__item" data-value="19" style="display: none;"><input type="checkbox" id="checkbox-0-19"><label for="checkbox-0-19"><span>Risk Management &amp; Quantitative Analysis</span></label></div>
          </div>
          <div class="mSelect__section" data-value="2">
            <div class="mSelect__title" data-value="2"><input type="checkbox" id="checkbox-0-2"><label id="parent-0-2" for="checkbox-0-2"><span>Human Resources<span></span></span></label></div>
            <div class="mSelect__item" data-value="22" style="display: none;"><input type="checkbox" id="checkbox-0-22"><label for="checkbox-0-22"><span>Compensation &amp; Benefits</span></label></div>
            <div class="mSelect__item" data-value="24" style="display: none;"><input type="checkbox" id="checkbox-0-24"><label for="checkbox-0-24"><span>General HR</span></label></div>
            <div class="mSelect__item" data-value="27" style="display: none;"><input type="checkbox" id="checkbox-0-27"><label for="checkbox-0-27"><span>HR &amp; Organizational Development</span></label></div>
            <div class="mSelect__item" data-value="29" style="display: none;"><input type="checkbox" id="checkbox-0-29"><label for="checkbox-0-29"><span>HR Controlling</span></label></div>
            <div class="mSelect__item" data-value="28" style="display: none;"><input type="checkbox" id="checkbox-0-28"><label for="checkbox-0-28"><span>HR Marketing &amp; Recruiting</span></label></div>
            <div class="mSelect__item" data-value="123" style="display: none;"><input type="checkbox" id="checkbox-0-123"><label for="checkbox-0-123"><span>HR Services</span></label></div>
            <div class="mSelect__item" data-value="26" style="display: none;"><input type="checkbox" id="checkbox-0-26"><label for="checkbox-0-26"><span>HR Strategy &amp; Management</span></label></div>
          </div>
          <div class="mSelect__section" data-value="3">
            <div class="mSelect__title" data-value="3"><input type="checkbox" id="checkbox-0-3"><label id="parent-0-3" for="checkbox-0-3"><span>Legal<span></span></span></label></div>
            <div class="mSelect__item" data-value="31" style="display: none;"><input type="checkbox" id="checkbox-0-31"><label for="checkbox-0-31"><span>Antitrust &amp; Competition Law</span></label></div>
            <div class="mSelect__item" data-value="35" style="display: none;"><input type="checkbox" id="checkbox-0-35"><label for="checkbox-0-35"><span>Arbitration</span></label></div>
            <div class="mSelect__item" data-value="32" style="display: none;"><input type="checkbox" id="checkbox-0-32"><label for="checkbox-0-32"><span>Construction &amp; Real Estate Law</span></label></div>
            <div class="mSelect__item" data-value="124" style="display: none;"><input type="checkbox" id="checkbox-0-124"><label for="checkbox-0-124"><span>Copyright &amp; Intellectual Property</span></label></div>
            <div class="mSelect__item" data-value="38" style="display: none;"><input type="checkbox" id="checkbox-0-38"><label for="checkbox-0-38"><span>Corporate Law</span></label></div>
            <div class="mSelect__item" data-value="30" style="display: none;"><input type="checkbox" id="checkbox-0-30"><label for="checkbox-0-30"><span>Employment Law</span></label></div>
            <div class="mSelect__item" data-value="33" style="display: none;"><input type="checkbox" id="checkbox-0-33"><label for="checkbox-0-33"><span>Finance, Financial Services &amp; Funds</span></label></div>
            <div class="mSelect__item" data-value="34" style="display: none;"><input type="checkbox" id="checkbox-0-34"><label for="checkbox-0-34"><span>Industrial Property Rights</span></label></div>
            <div class="mSelect__item" data-value="120" style="display: none;"><input type="checkbox" id="checkbox-0-120"><label for="checkbox-0-120"><span>Other Legal Services</span></label></div>
            <div class="mSelect__item" data-value="39" style="display: none;"><input type="checkbox" id="checkbox-0-39"><label for="checkbox-0-39"><span>Public Law</span></label></div>
            <div class="mSelect__item" data-value="36" style="display: none;"><input type="checkbox" id="checkbox-0-36"><label for="checkbox-0-36"><span>Restructuring &amp; Insolvency</span></label></div>
            <div class="mSelect__item" data-value="37" style="display: none;"><input type="checkbox" id="checkbox-0-37"><label for="checkbox-0-37"><span>Tax Law</span></label></div>
          </div>
          <div class="mSelect__section" data-value="4">
            <div class="mSelect__title" data-value="4"><input type="checkbox" id="checkbox-0-4"><label id="parent-0-4" for="checkbox-0-4"><span>Marketing<span></span></span></label></div>
            <div class="mSelect__item" data-value="40" style="display: none;"><input type="checkbox" id="checkbox-0-40"><label for="checkbox-0-40"><span>Advertising</span></label></div>
            <div class="mSelect__item" data-value="43" style="display: none;"><input type="checkbox" id="checkbox-0-43"><label for="checkbox-0-43"><span>Communication &amp; PR</span></label></div>
            <div class="mSelect__item" data-value="44" style="display: none;"><input type="checkbox" id="checkbox-0-44"><label for="checkbox-0-44"><span>Creative</span></label></div>
            <div class="mSelect__item" data-value="42" style="display: none;"><input type="checkbox" id="checkbox-0-42"><label for="checkbox-0-42"><span>Event Management</span></label></div>
            <div class="mSelect__item" data-value="45" style="display: none;"><input type="checkbox" id="checkbox-0-45"><label for="checkbox-0-45"><span>Market Research &amp; Market Analysis</span></label></div>
            <div class="mSelect__item" data-value="49" style="display: none;"><input type="checkbox" id="checkbox-0-49"><label for="checkbox-0-49"><span>Marketing Management</span></label></div>
            <div class="mSelect__item" data-value="50" style="display: none;"><input type="checkbox" id="checkbox-0-50"><label for="checkbox-0-50"><span>Media &amp; Information</span></label></div>
            <div class="mSelect__item" data-value="46" style="display: none;"><input type="checkbox" id="checkbox-0-46"><label for="checkbox-0-46"><span>Online Marketing</span></label></div>
            <div class="mSelect__item" data-value="41" style="display: none;"><input type="checkbox" id="checkbox-0-41"><label for="checkbox-0-41"><span>Product &amp; Brand Marketing</span></label></div>
          </div>
          <div class="mSelect__section" data-value="5">
            <div class="mSelect__title" data-value="5"><input type="checkbox" id="checkbox-0-5"><label id="parent-0-5" for="checkbox-0-5"><span>Bio &amp; Pharmacology &amp; Health<span></span></span></label></div>
            <div class="mSelect__item" data-value="51" style="display: none;"><input type="checkbox" id="checkbox-0-51"><label for="checkbox-0-51"><span>Biology, Biotech &amp; Chemistry</span></label></div>
            <div class="mSelect__item" data-value="52" style="display: none;"><input type="checkbox" id="checkbox-0-52"><label for="checkbox-0-52"><span>Healthcare</span></label></div>
            <div class="mSelect__item" data-value="126" style="display: none;"><input type="checkbox" id="checkbox-0-126"><label for="checkbox-0-126"><span>Medical Teaching</span></label></div>
            <div class="mSelect__item" data-value="125" style="display: none;"><input type="checkbox" id="checkbox-0-125"><label for="checkbox-0-125"><span>Medical, Bio &amp; Pharmaceutical Sales</span></label></div>
            <div class="mSelect__item" data-value="54" style="display: none;"><input type="checkbox" id="checkbox-0-54"><label for="checkbox-0-54"><span>Pharmacology</span></label></div>
            <div class="mSelect__item" data-value="53" style="display: none;"><input type="checkbox" id="checkbox-0-53"><label for="checkbox-0-53"><span>Physicians &amp; Doctors</span></label></div>
            <div class="mSelect__item" data-value="55" style="display: none;"><input type="checkbox" id="checkbox-0-55"><label for="checkbox-0-55"><span>Research, development and laboratory</span></label></div>
          </div>
          <div class="mSelect__section" data-value="6">
            <div class="mSelect__title" data-value="6"><input type="checkbox" id="checkbox-0-6"><label id="parent-0-6" for="checkbox-0-6"><span>Management &amp; Operations<span></span></span></label></div>
            <div class="mSelect__item" data-value="59" style="display: none;"><input type="checkbox" id="checkbox-0-59"><label for="checkbox-0-59"><span>Business Development &amp; Strategy</span></label></div>
            <div class="mSelect__item" data-value="131" style="display: none;"><input type="checkbox" id="checkbox-0-131"><label for="checkbox-0-131"><span>Business Intelligence &amp; Analysis</span></label></div>
            <div class="mSelect__item" data-value="66" style="display: none;"><input type="checkbox" id="checkbox-0-66"><label for="checkbox-0-66"><span>Change Management &amp; Restructuring</span></label></div>
            <div class="mSelect__item" data-value="130" style="display: none;"><input type="checkbox" id="checkbox-0-130"><label for="checkbox-0-130"><span>Compliance &amp; Regulatory Affairs</span></label></div>
            <div class="mSelect__item" data-value="58" style="display: none;"><input type="checkbox" id="checkbox-0-58"><label for="checkbox-0-58"><span>Customer Service</span></label></div>
            <div class="mSelect__item" data-value="132" style="display: none;"><input type="checkbox" id="checkbox-0-132"><label for="checkbox-0-132"><span>E-Commerce</span></label></div>
            <div class="mSelect__item" data-value="61" style="display: none;"><input type="checkbox" id="checkbox-0-61"><label for="checkbox-0-61"><span>Management &amp; Leadership</span></label></div>
            <div class="mSelect__item" data-value="129" style="display: none;"><input type="checkbox" id="checkbox-0-129"><label for="checkbox-0-129"><span>Operations &amp; Business Administration</span></label></div>
            <div class="mSelect__item" data-value="62" style="display: none;"><input type="checkbox" id="checkbox-0-62"><label for="checkbox-0-62"><span>Plant, Facility &amp; Center Management</span></label></div>
            <div class="mSelect__item" data-value="128" style="display: none;"><input type="checkbox" id="checkbox-0-128"><label for="checkbox-0-128"><span>Product Management</span></label></div>
            <div class="mSelect__item" data-value="63" style="display: none;"><input type="checkbox" id="checkbox-0-63"><label for="checkbox-0-63"><span>Project &amp; Process Management</span></label></div>
            <div class="mSelect__item" data-value="60" style="display: none;"><input type="checkbox" id="checkbox-0-60"><label for="checkbox-0-60"><span>Purchasing &amp; Procurement</span></label></div>
            <div class="mSelect__item" data-value="64" style="display: none;"><input type="checkbox" id="checkbox-0-64"><label for="checkbox-0-64"><span>Quality Management &amp; Operations</span></label></div>
            <div class="mSelect__item" data-value="65" style="display: none;"><input type="checkbox" id="checkbox-0-65"><label for="checkbox-0-65"><span>Supply Chain, Logistics &amp; Transportation</span></label></div>
            <div class="mSelect__item" data-value="127" style="display: none;"><input type="checkbox" id="checkbox-0-127"><label for="checkbox-0-127"><span>Trade, Import &amp; Export</span></label></div>
          </div>
          <div class="mSelect__section" data-value="7">
            <div class="mSelect__title" data-value="7"><input type="checkbox" id="checkbox-0-7"><label id="parent-0-7" for="checkbox-0-7"><span>Sales<span></span></span></label></div>
            <div class="mSelect__item" data-value="119" style="display: none;"><input type="checkbox" id="checkbox-0-119"><label for="checkbox-0-119"><span>General Sales</span></label></div>
            <div class="mSelect__item" data-value="133" style="display: none;"><input type="checkbox" id="checkbox-0-133"><label for="checkbox-0-133"><span>IT &amp; Software Sales</span></label></div>
            <div class="mSelect__item" data-value="134" style="display: none;"><input type="checkbox" id="checkbox-0-134"><label for="checkbox-0-134"><span>Medical &amp; Pharmaceutical Sales</span></label></div>
            <div class="mSelect__item" data-value="69" style="display: none;"><input type="checkbox" id="checkbox-0-69"><label for="checkbox-0-69"><span>Pre &amp; Post Sales Support</span></label></div>
            <div class="mSelect__item" data-value="70" style="display: none;"><input type="checkbox" id="checkbox-0-70"><label for="checkbox-0-70"><span>Sales Management</span></label></div>
            <div class="mSelect__item" data-value="135" style="display: none;"><input type="checkbox" id="checkbox-0-135"><label for="checkbox-0-135"><span>Technical Sales</span></label></div>
          </div>
          <div class="mSelect__section" data-value="8">
            <div class="mSelect__title" data-value="8"><input type="checkbox" id="checkbox-0-8"><label id="parent-0-8" for="checkbox-0-8"><span>IT &amp; Technology<span></span></span></label></div>
            <div class="mSelect__item" data-value="71" style="display: none;"><input type="checkbox" id="checkbox-0-71"><label for="checkbox-0-71"><span>Database, Analytics &amp; BI</span></label></div>
            <div class="mSelect__item" data-value="72" style="display: none;"><input type="checkbox" id="checkbox-0-72"><label for="checkbox-0-72"><span>IT Management &amp; IT Project Management</span></label></div>
            <div class="mSelect__item" data-value="80" style="display: none;"><input type="checkbox" id="checkbox-0-80"><label for="checkbox-0-80"><span>IT Sales</span></label></div>
            <div class="mSelect__item" data-value="73" style="display: none;"><input type="checkbox" id="checkbox-0-73"><label for="checkbox-0-73"><span>Networks &amp; Systems</span></label></div>
            <div class="mSelect__item" data-value="74" style="display: none;"><input type="checkbox" id="checkbox-0-74"><label for="checkbox-0-74"><span>Professional Services</span></label></div>
            <div class="mSelect__item" data-value="75" style="display: none;"><input type="checkbox" id="checkbox-0-75"><label for="checkbox-0-75"><span>Quality Management</span></label></div>
            <div class="mSelect__item" data-value="136" style="display: none;"><input type="checkbox" id="checkbox-0-136"><label for="checkbox-0-136"><span>SAP</span></label></div>
            <div class="mSelect__item" data-value="78" style="display: none;"><input type="checkbox" id="checkbox-0-78"><label for="checkbox-0-78"><span>Software Architecture &amp; Engineering</span></label></div>
            <div class="mSelect__item" data-value="77" style="display: none;"><input type="checkbox" id="checkbox-0-77"><label for="checkbox-0-77"><span>Software Development</span></label></div>
            <div class="mSelect__item" data-value="79" style="display: none;"><input type="checkbox" id="checkbox-0-79"><label for="checkbox-0-79"><span>Technical Support &amp; Administration</span></label></div>
          </div>
          <div class="mSelect__section" data-value="9">
            <div class="mSelect__title" data-value="9"><input type="checkbox" id="checkbox-0-9"><label id="parent-0-9" for="checkbox-0-9"><span>Engineering<span></span></span></label></div>
            <div class="mSelect__item" data-value="81" style="display: none;"><input type="checkbox" id="checkbox-0-81"><label for="checkbox-0-81"><span>Architecture, Planning &amp; Construction</span></label></div>
            <div class="mSelect__item" data-value="86" style="display: none;"><input type="checkbox" id="checkbox-0-86"><label for="checkbox-0-86"><span>Automotive Engineering</span></label></div>
            <div class="mSelect__item" data-value="87" style="display: none;"><input type="checkbox" id="checkbox-0-87"><label for="checkbox-0-87"><span>Aviation &amp; Aerospace</span></label></div>
            <div class="mSelect__item" data-value="138" style="display: none;"><input type="checkbox" id="checkbox-0-138"><label for="checkbox-0-138"><span>Business Engineering &amp; Management</span></label></div>
            <div class="mSelect__item" data-value="82" style="display: none;"><input type="checkbox" id="checkbox-0-82"><label for="checkbox-0-82"><span>Design &amp; Development</span></label></div>
            <div class="mSelect__item" data-value="84" style="display: none;"><input type="checkbox" id="checkbox-0-84"><label for="checkbox-0-84"><span>Electrical &amp; Energy Engineering</span></label></div>
            <div class="mSelect__item" data-value="139" style="display: none;"><input type="checkbox" id="checkbox-0-139"><label for="checkbox-0-139"><span>Maintenance &amp; Service</span></label></div>
            <div class="mSelect__item" data-value="137" style="display: none;"><input type="checkbox" id="checkbox-0-137"><label for="checkbox-0-137"><span>Manufacturing &amp; Production</span></label></div>
            <div class="mSelect__item" data-value="95" style="display: none;"><input type="checkbox" id="checkbox-0-95"><label for="checkbox-0-95"><span>Measurement &amp; Control Technology</span></label></div>
            <div class="mSelect__item" data-value="88" style="display: none;"><input type="checkbox" id="checkbox-0-88"><label for="checkbox-0-88"><span>Mechanical Engineering and Toolmaking</span></label></div>
            <div class="mSelect__item" data-value="141" style="display: none;"><input type="checkbox" id="checkbox-0-141"><label for="checkbox-0-141"><span>Medical Technology</span></label></div>
            <div class="mSelect__item" data-value="83" style="display: none;"><input type="checkbox" id="checkbox-0-83"><label for="checkbox-0-83"><span>Mining &amp; Raw Material Production</span></label></div>
            <div class="mSelect__item" data-value="93" style="display: none;"><input type="checkbox" id="checkbox-0-93"><label for="checkbox-0-93"><span>Physics</span></label></div>
            <div class="mSelect__item" data-value="91" style="display: none;"><input type="checkbox" id="checkbox-0-91"><label for="checkbox-0-91"><span>Plastics &amp; Process Engineering</span></label></div>
            <div class="mSelect__item" data-value="140" style="display: none;"><input type="checkbox" id="checkbox-0-140"><label for="checkbox-0-140"><span>Quality Engineering</span></label></div>
            <div class="mSelect__item" data-value="92" style="display: none;"><input type="checkbox" id="checkbox-0-92"><label for="checkbox-0-92"><span>Technical Sales Engineering</span></label></div>
            <div class="mSelect__item" data-value="89" style="display: none;"><input type="checkbox" id="checkbox-0-89"><label for="checkbox-0-89"><span>Telecommunication &amp; Information Technology</span></label></div>
          </div>
          <div class="mSelect__section" data-value="10">
            <div class="mSelect__title" data-value="10"><input type="checkbox" id="checkbox-0-10"><label id="parent-0-10" for="checkbox-0-10"><span>Other<span></span></span></label></div>
            <div class="mSelect__item" data-value="143" style="display: none;"><input type="checkbox" id="checkbox-0-143"><label for="checkbox-0-143"><span>Agriculture &amp; Crop Production</span></label></div>
            <div class="mSelect__item" data-value="101" style="display: none;"><input type="checkbox" id="checkbox-0-101"><label for="checkbox-0-101"><span>Art &amp; Culture</span></label></div>
            <div class="mSelect__item" data-value="96" style="display: none;"><input type="checkbox" id="checkbox-0-96"><label for="checkbox-0-96"><span>Assistance</span></label></div>
            <div class="mSelect__item" data-value="142" style="display: none;"><input type="checkbox" id="checkbox-0-142"><label for="checkbox-0-142"><span>Charity</span></label></div>
            <div class="mSelect__item" data-value="146" style="display: none;"><input type="checkbox" id="checkbox-0-146"><label for="checkbox-0-146"><span>Food Production &amp; Safety</span></label></div>
            <div class="mSelect__item" data-value="98" style="display: none;"><input type="checkbox" id="checkbox-0-98"><label for="checkbox-0-98"><span>Health, Safety &amp; Environment</span></label></div>
            <div class="mSelect__item" data-value="100" style="display: none;"><input type="checkbox" id="checkbox-0-100"><label for="checkbox-0-100"><span>Hospitality &amp; Leisure</span></label></div>
            <div class="mSelect__item" data-value="145" style="display: none;"><input type="checkbox" id="checkbox-0-145"><label for="checkbox-0-145"><span>Public Sector, Administration &amp; Politics</span></label></div>
            <div class="mSelect__item" data-value="102" style="display: none;"><input type="checkbox" id="checkbox-0-102"><label for="checkbox-0-102"><span>Science, Research and Teaching</span></label></div>
            <div class="mSelect__item" data-value="144" style="display: none;"><input type="checkbox" id="checkbox-0-144"><label for="checkbox-0-144"><span>Sports</span></label></div>
            <div class="mSelect__item" data-value="147" style="display: none;"><input type="checkbox" id="checkbox-0-147"><label for="checkbox-0-147"><span>Textiles</span></label></div>
            <div class="mSelect__item" data-value="97" style="display: none;"><input type="checkbox" id="checkbox-0-97"><label for="checkbox-0-97"><span>Training &amp; Coaching</span></label></div>
            <div class="mSelect__item" data-value="148" style="display: none;"><input type="checkbox" id="checkbox-0-148"><label for="checkbox-0-148"><span>Utilities Sector</span></label></div>
          </div>
          <div class="mSelect__section" data-value="12">
            <div class="mSelect__title" data-value="12"><input type="checkbox" id="checkbox-0-12"><label id="parent-0-12" for="checkbox-0-12"><span>Consulting<span></span></span></label></div>
            <div class="mSelect__item" data-value="117" style="display: none;"><input type="checkbox" id="checkbox-0-117"><label for="checkbox-0-117"><span>Engineering Consulting</span></label></div>
            <div class="mSelect__item" data-value="111" style="display: none;"><input type="checkbox" id="checkbox-0-111"><label for="checkbox-0-111"><span>Finance Consulting</span></label></div>
            <div class="mSelect__item" data-value="112" style="display: none;"><input type="checkbox" id="checkbox-0-112"><label for="checkbox-0-112"><span>Human Capital</span></label></div>
            <div class="mSelect__item" data-value="151" style="display: none;"><input type="checkbox" id="checkbox-0-151"><label for="checkbox-0-151"><span>Insurance Consulting</span></label></div>
            <div class="mSelect__item" data-value="116" style="display: none;"><input type="checkbox" id="checkbox-0-116"><label for="checkbox-0-116"><span>IT, Technology &amp; SAP</span></label></div>
            <div class="mSelect__item" data-value="152" style="display: none;"><input type="checkbox" id="checkbox-0-152"><label for="checkbox-0-152"><span>Legal Consulting</span></label></div>
            <div class="mSelect__item" data-value="149" style="display: none;"><input type="checkbox" id="checkbox-0-149"><label for="checkbox-0-149"><span>Life Science &amp; Pharmacology &amp; Health</span></label></div>
            <div class="mSelect__item" data-value="114" style="display: none;"><input type="checkbox" id="checkbox-0-114"><label for="checkbox-0-114"><span>Management &amp; Strategy</span></label></div>
            <div class="mSelect__item" data-value="113" style="display: none;"><input type="checkbox" id="checkbox-0-113"><label for="checkbox-0-113"><span>Marketing &amp; Sales</span></label></div>
            <div class="mSelect__item" data-value="150" style="display: none;"><input type="checkbox" id="checkbox-0-150"><label for="checkbox-0-150"><span>Public Sector</span></label></div>
            <div class="mSelect__item" data-value="115" style="display: none;"><input type="checkbox" id="checkbox-0-115"><label for="checkbox-0-115"><span>Supply Chain &amp; Logistics</span></label></div>
          </div>
        </div>
      </div>
    </div>
    <!-- eo:module_registration_views_partials_viewhelper_multiChannelSelect -->
  </div>
  <div class="form-submit">
    <button type="submit" class="o-button o-button--orange o-button--center o-text--medium">Start application</button>
    <p class="legal">By clicking the „Start application" button you accept our <a href="/terms-of-use" target="_blank">Terms of use</a> and <a href="/privacy-policy" target="_blank">Privacy policy</a>.</p>
    <div class="safety-badge-container_middle">
      <div class="safety-badge">
        <div class="safety-badge__icon">
          <div class="safety-badge__circle"></div>
          <img src="https://static.jobleads.com/resources/_shared/gfx/safety-icon.svg" alt="Safety icon">
          <span>100%</span>
        </div>
        <div class="safety-badge__info">
          <p class="safety-badge__title">Privacy policy</p>
          <ul class="safety-badge__list">
            <li>Safe</li>
            <li>Protected</li>
            <li>Certified</li>
          </ul>
        </div>
      </div>
    </div>
  </div>
</form>

Name: loginPOST /auth/login

<form class="login form" name="login" method="post" action="/auth/login">
  <div class="container">
    <div class="row">
      <div class="col-sm-6">
        <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label is-disabled is-upgraded" id="emailAddressField" data-upgraded=",MaterialTextfield">
          <input tabindex="1" type="text" class="mdl-textfield__input" id="user_name" name="user_name" disabled="" value="">
          <label class="mdl-textfield__label" for="user_name">
            <div class="d-inline-flex align-items-center"><i class="material-icons">mail</i> Email address </div>
          </label>
        </div>
      </div>
      <div class="col-sm-6">
        <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label is-upgraded" data-upgraded=",MaterialTextfield">
          <input tabindex="2" type="password" class="mdl-textfield__input" id="user_password" name="user_password">
          <label class="mdl-textfield__label" for="user_password">
            <div class="d-inline-flex align-items-center"><i class="material-icons">lock</i> Password </div>
          </label>
          <span class="mdl-textfield__error"></span>
        </div>
      </div>
      <div class="col-sm-6">
        <div class="safety-badge-container_middle safety-badge-container_space">
          <div class="safety-badge">
            <div class="safety-badge__icon">
              <div class="safety-badge__circle"></div>
              <img src="https://static.jobleads.com/resources/_shared/gfx/safety-icon.svg" alt="Safety icon">
              <span>100%</span>
            </div>
            <div class="safety-badge__info">
              <p class="safety-badge__title">Privacy policy</p>
              <ul class="safety-badge__list">
                <li>Safe</li>
                <li>Protected</li>
                <li>Certified</li>
              </ul>
            </div>
          </div>
        </div>
      </div>
      <div class="col-sm-6">
        <button tabindex="4" class="o-button o-button--orange o-button--center o-text--medium" type="submit" id="login_button">Log in</button>
      </div>
    </div>
  </div>
  <input type="hidden" name="user_name" value="">
  <input type="hidden" id="login_area" name="login_area" value="User">
  <input type="hidden" name="errorReturnType" value="JSON">
  <input type="hidden" name="locale" value="en_US">
</form>

Text Content

THE FIRST ADDRESS FOR EXECUTIVES AND SPECIALISTS

JobLeads
English
 * Deutsch
 * English
 * Español
 * Français
 * Italiano
 * Português (Portugal)
 * Português (Brasil)

Deutsch English Español Français Italiano Português (Portugal)
Português (Brasil)
Log in


INFORMATION SECURITY OFFICER

domain Booth & Partners location_on Manila
 * Date published: 7/19/23
 * Industry: Other

Apply now
Sign up and find out what you would earn in this positionkeyboard_arrow_right


SENIOR SOFTWARE QA ENGINEERING ANALYST

domain 1143 Navitaire Philippines INC location_on Manila
 * Date published: 8/3/23
 * Industry: Other

Apply now
Sign up and find out what you would earn in this positionkeyboard_arrow_right


SOFTWARE DEVELOPMENT TEAM LEAD

domain 1143 Navitaire Philippines INC location_on Manila
 * Date published: 8/12/23
 * Industry: Other

Apply now
Sign up and find out what you would earn in this positionkeyboard_arrow_right


SOFTWARE DEVELOPMENT TEAM LEAD

domain Amadeus location_on Manila
 * Date published: 8/12/23
 * Industry: Other

Apply now
Sign up and find out what you would earn in this positionkeyboard_arrow_right


DIGITAL PLATFORM - SENIOR WEB DEVELOPER

domain 1143 Navitaire Philippines INC location_on Manila
 * Date published: 8/4/23
 * Industry: Other

Apply now
Sign up and find out what you would earn in this positionkeyboard_arrow_right


DIGITAL PLATFORM - ASSOCIATE WEB DEVELOPER

domain 1143 Navitaire Philippines INC location_on Manila
 * Date published: 8/3/23
 * Industry: Other

Apply now
Sign up and find out what you would earn in this positionkeyboard_arrow_right


INFORMATION SECURITY OFFICER

domain Booth & Partners location_on Manila


INFORMATION SECURITY OFFICER (CODE: BPMCISO)

 * Industry Employment - Recruiting - Staffing
 * Remote Job


JOB DESCRIPTION

This is a remote position.

About the Client:


Started in 2013 by CEO Carmen Booth and Managing Director Jamie Booth with a
vision to provide businesses from all around the world with their own full-time,
first-rate offshore team in the Philippines.


Our smart tailored outsourcing and HR solutions deliver high-quality results
with reduced operating costs for companies of all sizes across a wide range of
industries.


Job Summary:


The Information Security Officer is responsible for implementing software and
security measures toprotect systems and infrastructure from cyber threats and
network intrusions, including bugs, malware, and hacking attempts for both Booth
and Partners and ARCH Offices.

The main goal of Information Security Officer I is to ensure company’s IT
security - by enforcing policies, responding to threats, risk reduction,
managing applications and infrastructure’s security, and keeping up with the
latest trends and threats.


Responsibilities:


Main Tasks:


 * Sensitivity to threats, suspicious activities, and risks - proactively
   providing recommendations and reacting swiftly towards mitigation and
   resolution
   
 * Organizational awareness - works closely with leadership team on identifying
   and alarming possible fraud activities
   
 * Prioritizing client and stakeholder by ensuring secure access to
   infrastructure while also not compromising reasonable ease of access and
   operation
   
 * Conduct data analysis reduce the risks associated with security breaches and
   to mitigate threats before they can be exploited
   
 * Researching and reviewing latest security trends and emerging threats and
   implementing necessary preventive measures to avoid these threats
   
 * Sourcing and implementing new security solutions to better protect the
   company, its data and IT infrastructure
   
 * Manages firewall and other network security devices to protect the company’s
   network from external threats
   
 * Deploys and manages endpoint protection such as antivirus. Keeping AV
   definitions up-to-date. Regularly checks and investigates detected infections
   and potential threats.
   
 * Ensures security policies for all devices are being enforced
   
 * Implement encryption (disk or file level) to applications, website, and
   systems databases
   
 * Assists in implementing and managing cloud based URL filtering and
   application control solutions
   
 * Defines resources, control structures, and access privileges to protect the
   system.
   
 * Spearhead Security Incident Response and Disaster Recovery Plans testing and
   evaluations
   
 * Enforces the use of secure erasure solutions such as NIST and SOC 2 compliant
   software to wipe data
   
 * Conducts regular security audits on network appliances, web servers,
   applications, and business tools, considering existing organization
   compliances
   
 * Performs or assists in conducting penetration testings
   
 * Developing and coordinating a thorough security strategy to Network Engineer
   for the company’s network infrastructure
   
 * Assists on evaluating new updates and patches on systems and services prior
   deployment or installation
   
 * Assists in data privacy impact assessments
   
 * Complete daily operational tasks within the predefined SLA.
   
 * Provides regular and timely IT Security report and status.
   

Secondary Tasks:

 * Manage and maintain CCTV, biometrics, and RFID systems
   
 * Work closely with Facilities in office security management
   
 * Ensure daily operations and troubleshooting documentations are relevant and
   up to date. Identifies gaps and improvements in processes and protocols.
   
 * Assists on monitoring IT systems and applications especially for potential
   threats and vulnerabilities.
   
 * Assists on evaluating vendor systems, applications, and services prior
   acquisition in terms of data security requirements
   
 * Performs ad-hoc responsibilities/assignments from time to time.
   
 * Work closely with TQA and HR team for the annual security trainings of
   employees
   


REQUIREMENTS

 * Bachelor’s degree in Computer Science, Information Technology, or equivalent
   education
   
 * Minimum of 2 years relevant experience
   
 * Knowledge of computer networking concepts and protocols and network security
   methodologies
   
 * Excellent problem-solving and analytical skills
   
 * Ability to educate a non-technical audience about various IT security
   measures and awareness programs
   
 * Strong attention to detail with excellent time management and organization
   skills, independent, excellent interpersonal skills, highly motivated, and
   able to work under pressure.
   
 * Good to intermediate english communications, both written and verbal
   
 * Hybrid setup - willing to report to the office (Makati and/or BGC) at least
   once a week or whenever needed, 24/7 shifting schedule, with minimal coverage
   during holidays and weekends.
   
 * Must have Fiber Optic internet with at least 25 Mbps bandwidth
   
 * Must have a backup desktop or laptop with the latest OS
   

GOOD TO HAVE

 * Experience with the following: Anti-Virus, Firewall management, Encryption,
   Intrusion detection systems (IDS) and intrusion prevention systems (IPS),
   Network Forensics
   
 * Experience with vulnerability scanning solutions
   
 * Experience in using and protecting Enterprise and Service Provider platforms
   and architectures such as Google Workspace, Zoho, Zscaler, Microsoft
   applications, RingCentral or any similar systems
   
 * Experience in performing security audits
   
 * Having CompTIA Security+, CCNA, CCNP Security, Cisco Certified CyberOps
   certification or equivalent
   

Apply now


SENIOR SOFTWARE QA ENGINEERING ANALYST

domain 1143 Navitaire Philippines INC location_on Manila

Senior Software QA Engineering Analyst page is loaded


SENIOR SOFTWARE QA ENGINEERING ANALYST

Apply locations Manila, Metro Manila time type Full time posted on Posted 7 Days
Ago job requisition id R12443

Job Title

Senior Software QA Engineering Analyst

Purpose of the role
The position is responsible for testing Navitaire complex airline application
software to ensure that products meet acceptable standards and end-user
requirements. The position will specialize in defining test requirements and
creation and execution of automated tests for the assigned Navitaire
application. The role requires collaboration with business analysts, developers
and other product engineering members both from the Manila and US teams. The
position is expected to work with high level of independence, with minimal
supervision from a team lead.

In this role you'll:

 * Works with the scrum team in refining requirements, providing feedback on
   acceptance criteria and defining test coverage

 * Create and maintain test harness/framework and automated test scripts.
   Perform different levels of product testing including integration,
   regression, and exploratory testing through automated tests (manual tests in
   limited situations)

 * Provide support in production operational issues such as recreating the
   issues and fixing issues that are setup related. 

 * Contribute to the tracking and resolution of bugs. This includes reporting
   bugs, recreating them as necessary, and validation of the resolved bugs.

 * Initiate, identify and implement improvements to the test process and
   procedures with the goal of improving quality and efficiency. 

About the ideal candidate:

 * Bachelor's Degree in Computer Science / Information Technology or equivalent

 * With 2-3 years Software Quality assurance experience in the technology
   industry with specific knowledge on:
   - Test Planning, Streamlining, Analysis and Estimation for both manual and
   automated tests
   - Experience with object oriented programming (OOP)
   - Experience designing and writing tests on different testing framework (may
   include specific testing framework here)
   - Experience in using Software Project Management tools like ADO
   - Experience in working in an Agile setup
   - Recent quality assurance and automation trends

 * With relevant experience in software development, specifically on QA and test
   automation

Diversity & Inclusion

We are an Equal Opportunity Employer and seek to hire the best candidate
regardless of age, beliefs, disability, ethnicity, gender or sexual orientation.


SIMILAR JOBS (4)


SENIOR QA ENGINEER

locations Manila, Metro Manila time type Full time posted on Posted 30+ Days Ago


SENIOR QA ENGINEER

locations Manila, Metro Manila time type Full time posted on Posted 7 Days Ago


ABOUT US

At Amadeus we’re powering better journeys through travel technology, creating
the new and unexpected in the world of travel. And so can you!

We’re a global team of over 16,000 professionals of 149 nationalities, working
across 190 countries. Join us to add your voice to our diverse mix for better
discussions, decisions and outcomes for everyone.

Be innovative. Be impactful. Be Amadeus.


WE'RE A TOP EMPLOYER 2023!

0:00  /  0:10


INTRODUCE YOURSELF



Apply now


SOFTWARE DEVELOPMENT TEAM LEAD

domain 1143 Navitaire Philippines INC location_on Manila

Software Development Team Lead page is loaded


SOFTWARE DEVELOPMENT TEAM LEAD

Apply locations Manila, Metro Manila time type Full time posted on Posted 2 Days
Ago job requisition id R11815

Job Title

Software Development Team Lead

Purpose of the role:

The developer is primarily responsible for leading a Scrum Team that aims to
deliver usable iteration of the SkyLedger product. Main responsibility is to
ensure that the Sprint goals by ensuring timely delivery of the committed items
of the team including own deliverables. Coordinate and stategize with
Stakeholders to ensure that product delivery is on point. Ensure proper guidance
and training are provided for the members of the team.

In this role you'll:

 * Manage team backlog and work with Business Analyst to ensure proper order of
   delivery.

 * Coordinate Sprint status to Stakeholders and ensure proper strategy is
   implemented in delivery.

 * Provide input on resource planning, project priorities and team processes

 * Provide feedback to Manager and monitor performance of Development team
   members within the Scrum team.

 * Manage the performance evaluation and contribute to the engagement of the
   team

 * Design, Develop and maintain application following a set of coding standards

 * Support and resolve Production issues raised by the clients

 * Perform technical impact analysis, coding and unit testing

 * Research and resolve production issues according to team SOP and guidelines

 * Collaborate with the team to identify areas of improvement in software
   development processes and propose solutions

 * Provide assistance to other team members in area(s) of technical and
   functional knowledge. Serve as SME and problem solver in various aspect of
   the team's job

 * Report on team’s activities and be responsible for the performance and
   results of the team

About the ideal candidate:

 * BS in Computer Science/Mathematics/Physics/Data Science or equivalent
   experience

 * 6+ years of professional programming experience in C#, .NET and SQL

 * 1+ years recognized as a subject matter expert of enterprise-level systems or
   sub-systems, working on coding, design and production support

 * 1+ years of experience working in an agile setting

 * Strong analytical skills

 * Ability to work in a dynamic, fast-paced and multi-cultural environment

 * Team player, high initiative and quick learner

Baseline:

 * C# and .NET

 * SQL (SQL Server)

 * API integration and implementation

 * Unit tests

Plus:

 * Test automation experience using xUnit, NUnit or other C# test automation
   framework

 * Experience with implementing cloud deployed solutions (Azure preferred, AWS
   considered)

 * Web development experience with Angular or React

 * Hands-on experience working within microservice based architecture

 * External API design / implementation experience

 * Cloud data storage experience (Azure SQL, Cosmos or equivalents)

 * Experience working with CI/CD automation

 * Test automation development experience beyond unit testing (integration,
   performance, etc)

What can we offer you:

 * Get rewarded with competitive remuneration, paid time off, health insurances
   and other competitive benefits.

 * Hybrid work set-up.

 * Enter a diverse and inclusive workplace, join one of the world's top travel
   technology companies and take on a role that impacts millions of travelers
   around the globe.

Diversity & Inclusion

We are an Equal Opportunity Employer and seek to hire the best candidate
regardless of age, beliefs, disability, ethnicity, gender or sexual orientation.


SIMILAR JOBS (2)


SOFTWARE DEVELOPMENT MANAGER

locations Manila, Metro Manila time type Full time posted on Posted 15 Days Ago


SOFTWARE DEVELOPMENT ENGINEER

locations Manila, Metro Manila time type Full time posted on Posted 30+ Days Ago


ABOUT US

At Amadeus we’re powering better journeys through travel technology, creating
the new and unexpected in the world of travel. And so can you!

We’re a global team of over 16,000 professionals of 149 nationalities, working
across 190 countries. Join us to add your voice to our diverse mix for better
discussions, decisions and outcomes for everyone.

Be innovative. Be impactful. Be Amadeus.


WE'RE A TOP EMPLOYER 2023!

0:00  /  0:10


INTRODUCE YOURSELF



Apply now


SOFTWARE DEVELOPMENT TEAM LEAD

domain Amadeus location_on Manila

Software Development Team Lead page is loaded


SOFTWARE DEVELOPMENT TEAM LEAD

Apply locations Manila, Metro Manila time type Full time posted on Posted 2 Days
Ago job requisition id R11815

Job Title

Software Development Team Lead

Purpose of the role:

The developer is primarily responsible for leading a Scrum Team that aims to
deliver usable iteration of the SkyLedger product. Main responsibility is to
ensure that the Sprint goals by ensuring timely delivery of the committed items
of the team including own deliverables. Coordinate and stategize with
Stakeholders to ensure that product delivery is on point. Ensure proper guidance
and training are provided for the members of the team.

In this role you'll:

 * Manage team backlog and work with Business Analyst to ensure proper order of
   delivery.

 * Coordinate Sprint status to Stakeholders and ensure proper strategy is
   implemented in delivery.

 * Provide input on resource planning, project priorities and team processes

 * Provide feedback to Manager and monitor performance of Development team
   members within the Scrum team.

 * Manage the performance evaluation and contribute to the engagement of the
   team

 * Design, Develop and maintain application following a set of coding standards

 * Support and resolve Production issues raised by the clients

 * Perform technical impact analysis, coding and unit testing

 * Research and resolve production issues according to team SOP and guidelines

 * Collaborate with the team to identify areas of improvement in software
   development processes and propose solutions

 * Provide assistance to other team members in area(s) of technical and
   functional knowledge. Serve as SME and problem solver in various aspect of
   the team's job

 * Report on team’s activities and be responsible for the performance and
   results of the team

About the ideal candidate:

 * BS in Computer Science/Mathematics/Physics/Data Science or equivalent
   experience

 * 6+ years of professional programming experience in C#, .NET and SQL

 * 1+ years recognized as a subject matter expert of enterprise-level systems or
   sub-systems, working on coding, design and production support

 * 1+ years of experience working in an agile setting

 * Strong analytical skills

 * Ability to work in a dynamic, fast-paced and multi-cultural environment

 * Team player, high initiative and quick learner

Baseline:

 * C# and .NET

 * SQL (SQL Server)

 * API integration and implementation

 * Unit tests

Plus:

 * Test automation experience using xUnit, NUnit or other C# test automation
   framework

 * Experience with implementing cloud deployed solutions (Azure preferred, AWS
   considered)

 * Web development experience with Angular or React

 * Hands-on experience working within microservice based architecture

 * External API design / implementation experience

 * Cloud data storage experience (Azure SQL, Cosmos or equivalents)

 * Experience working with CI/CD automation

 * Test automation development experience beyond unit testing (integration,
   performance, etc)

What can we offer you:

 * Get rewarded with competitive remuneration, paid time off, health insurances
   and other competitive benefits.

 * Hybrid work set-up.

 * Enter a diverse and inclusive workplace, join one of the world's top travel
   technology companies and take on a role that impacts millions of travelers
   around the globe.

Diversity & Inclusion

We are an Equal Opportunity Employer and seek to hire the best candidate
regardless of age, beliefs, disability, ethnicity, gender or sexual orientation.


SIMILAR JOBS (2)


SOFTWARE DEVELOPMENT MANAGER

locations Manila, Metro Manila time type Full time posted on Posted 15 Days Ago


SOFTWARE DEVELOPMENT ENGINEER

locations Manila, Metro Manila time type Full time posted on Posted 30+ Days Ago


ABOUT US

At Amadeus we’re powering better journeys through travel technology, creating
the new and unexpected in the world of travel. And so can you!

We’re a global team of over 16,000 professionals of 149 nationalities, working
across 190 countries. Join us to add your voice to our diverse mix for better
discussions, decisions and outcomes for everyone.

Be innovative. Be impactful. Be Amadeus.


WE'RE A TOP EMPLOYER 2023!

0:00  /  0:10


INTRODUCE YOURSELF



Apply now


DIGITAL PLATFORM - SENIOR WEB DEVELOPER

domain 1143 Navitaire Philippines INC location_on Manila

Digital Platform - Senior Web Developer page is loaded


DIGITAL PLATFORM - SENIOR WEB DEVELOPER

Apply locations Manila, Metro Manila time type Full time posted on Posted 16
Days Ago job requisition id R12138

Job Title

Digital Platform - Senior Web Developer

The Senior Web Developer will be responsible for coding, testing, releasing,
supporting, and troubleshooting the Web App SDK within the Navitaire Digital
Experience Suite. The Web App SDK is a launching point for developing an
Internet Booking Engine (IBE) against the Digital API. It consists of a
collection of software framework libraries compiled by Navitaire and used as the
basis for enabling rapid development of Single Page Application (SPA) websites
that provide innovative digital experiences to passengers.

The Senior Web Developer will work closely with a scrum team that comprises of
an Engineering Lead, Product Owner, UX Designer, Scrum Master, Developers and QA
Analysts to determine and implement appropriate solutions that enhances and
evolves the technical and functional capabilities of the Web App SDK to meet
market and/or client requirements.

Key Responsibilities

 * Be part of an Agile Scrum team of technical, functional, and business domain
   experts to develop a Web SDK and Web Application that helps Navitaire
   customers maximize their digital presence.
 * Participate in Scrum ceremonies – daily stand-ups, sprint planning, backlog
   refinement, sprint reviews and sprint retrospectives.
 * Frontend and backend web development, testing and troubleshooting of
   solutions following Navitaire design and coding standards.
 * Translate designs and wireframes into high-quality app pages.
 * Provide support during deployments and releases of the app.
 * Investigate and resolve production issues according to team guidelines and
   procedures.
 * Functional testing and using and/or writing diagnostic programs to ensure
   optimal performance of developed solutions.
 * Build functional expertise in the Navitaire Reservation System and the
   Navitaire Digital Platform.
 * Conduct assessment and optimization of application performance and security.
 * Perform technical impact analysis.
 * Contribute in training and assisting scrum/project teammates in various
   aspects of the work.
 * Contribute to developing custom web apps for Navitaire customers via the
   Digital Services domain.
 * Contribute to Navitaire’s Digital vision thru the Digital Labs initiative – a
   group within Navitaire whose primary goal is to demonstrate the existing
   capabilities and potential of the Navitaire Digital Platform and other
   Digital assets through innovation and experimentation.

Required Qualifications

 * Must possess a University degree in Computer Science, Information Technology,
   or similar discipline.
 * Minimum of 3 years of software development experience in the Technology
   industry.
 * Minimum of 1 year of experience developing software using OOP concepts.
 * Experience in developing web applications particularly using the following
   libraries and technologies:
   * C# / .NET
   * HTML 5
   * CSS
   * Angular
   * TypeScript
   * REST API
   * NPM
   * Serverless functions (preferably) Azure Functions.
 * Comfortable in working in an Agile environment that promotes active
   communication, feedback, and flexibility.
 * Comfortable in working directly with colleagues, stakeholders and customers
   from different cultures.
 * Capable of learning new things and quickly become proficient as technology
   and the team’s priorities change.
 * Strong analytical skills. Proven ability to analyze and solve problems and
   issues effectively and quickly.
 * Team player and able to work in a dynamic, fast-paced and multi-cultural
   environment.
 * Strong English verbal and written communication skills.
 * Have flexibility to occasionally attend early morning or evening calls
   (between 6:00am-8:00am or 8:00pm-11:00pm) when necessary to support a global
   customer base.

Preferred Qualifications

 * Experience with implementing cloud deployed solutions (Azure preferred, AWS
   considered)

Diversity & Inclusion

We are an Equal Opportunity Employer and seek to hire the best candidate
regardless of age, beliefs, disability, ethnicity, gender or sexual orientation.


SIMILAR JOBS (5)


DIGITAL PLATFORM - WEB DEVELOPER

locations Manila, Metro Manila time type Full time posted on Posted 16 Days Ago


DIGITAL PLATFORM - ASSOCIATE WEB DEVELOPER

locations Manila, Metro Manila time type Full time posted on Posted 16 Days Ago


ABOUT US

At Amadeus we’re powering better journeys through travel technology, creating
the new and unexpected in the world of travel. And so can you!

We’re a global team of over 16,000 professionals of 149 nationalities, working
across 190 countries. Join us to add your voice to our diverse mix for better
discussions, decisions and outcomes for everyone.

Be innovative. Be impactful. Be Amadeus.


WE'RE A TOP EMPLOYER 2023!

0:00  /  0:10


INTRODUCE YOURSELF



Apply now


DIGITAL PLATFORM - ASSOCIATE WEB DEVELOPER

domain 1143 Navitaire Philippines INC location_on Manila

Digital Platform - Associate Web Developer page is loaded


DIGITAL PLATFORM - ASSOCIATE WEB DEVELOPER

Apply locations Manila, Metro Manila time type Full time posted on Posted 15
Days Ago job requisition id R12142

Job Title

Digital Platform - Associate Web Developer

The Associate Web Developer will be responsible for coding, testing, releasing,
supporting, and troubleshooting the Web App SDK within the Navitaire Digital
Experience Suite. The Web App SDK is a launching point for developing an
Internet Booking Engine (IBE) against the Digital API. It consists of a
collection of software framework libraries compiled by Navitaire and used as the
basis for enabling rapid development of Single Page Application (SPA) websites
that provide innovative digital experiences to passengers.

The Associate Web Developer will work closely with a scrum team that comprises
of an Engineering Lead, Product Owner, UX Designer, Scrum Master, Developers and
QA Analysts to determine and implement appropriate solutions that enhances and
evolves the technical and functional capabilities of the Web App SDK to meet
market and/or client requirements.

Key Responsibilities

 * Be part of an Agile Scrum team of technical, functional, and business domain
   experts to develop a Web SDK and Web Application that helps Navitaire
   customers maximize their digital presence.
 * Participate in Scrum ceremonies – daily stand-ups, sprint planning, backlog
   refinement, sprint reviews and sprint retrospectives.
 * Frontend and backend web development, testing and troubleshooting of
   solutions following Navitaire design and coding standards.
 * Translate designs and wireframes into high-quality app pages.
 * Provide support during deployments and releases of the app.
 * Investigate and resolve production issues according to team guidelines and
   procedures.
 * Functional testing and using and/or writing diagnostic programs to ensure
   optimal performance of developed solutions.
 * Build functional expertise in the Navitaire Reservation System and the
   Navitaire Digital Platform.
 * Apply changes to optimize application performance and security.
 * Assisting scrum/project teammates in various aspects of the work.
 * Contribute to developing custom web apps for Navitaire customers via the
   Digital Services domain.
 * Contribute to Navitaire Digital Labs – a domain within Navitaire whose
   primary goal is to investigate, research, and experiment on the most relevant
   topics affecting Digital today, and serve as an incubator for ideas,
   concepts, designs, and prototypes, to promote new and different ways of
   positioning Navitaire an innovator within the travel digital space.

Required Qualifications

 * Must possess a University degree in Computer Science, Information Technology,
   or similar discipline.
 * Technical skills in web development.
 * Comfortable in working in an Agile environment that promotes active
   communication, feedback and flexibility.
 * Comfortable in working directly with colleagues, stakeholders and customers
   from different cultures.
 * Capable of learning new things and quickly become proficient as technology
   and the team’s priorities change.
 * Strong analytical skills. Proven ability to analyze and solve problems and
   issues effectively and quickly.
 * Team player and able to work in a dynamic, fast-paced and multi-cultural
   environment.
 * Strong English verbal and written communication skills.
 * Have flexibility to occasionally attend early morning or evening calls
   (between 6:00am-8:00am or 8:00pm-11:00pm) when necessary to support a global
   customer base.

Technologies we use

 * C# / .NET
 * API integration / implementation
   * RESTful API
   * GraphQL
 * Web development
   * HTML 5
   * CSS
   * Angular
   * TypeScript
   * NPM
 * Microsoft Azure

Diversity & Inclusion

We are an Equal Opportunity Employer and seek to hire the best candidate
regardless of age, beliefs, disability, ethnicity, gender or sexual orientation.


SIMILAR JOBS (5)


DIGITAL PLATFORM - SENIOR WEB DEVELOPER

locations Manila, Metro Manila time type Full time posted on Posted 15 Days Ago


DIGITAL PLATFORM - WEB DEVELOPER

locations Manila, Metro Manila time type Full time posted on Posted 15 Days Ago


ABOUT US

At Amadeus we’re powering better journeys through travel technology, creating
the new and unexpected in the world of travel. And so can you!

We’re a global team of over 16,000 professionals of 149 nationalities, working
across 190 countries. Join us to add your voice to our diverse mix for better
discussions, decisions and outcomes for everyone.

Be innovative. Be impactful. Be Amadeus.


WE'RE A TOP EMPLOYER 2023!

0:00  /  0:10


INTRODUCE YOURSELF



Apply now


39 SIMILAR JOBS FOUND

View now


HEADHUNTERS ARE SEARCHING FOR CANDIDATES LIKE YOU

View now


VIEW SIMILAR JOBS

INFORMATION SECURITY OFFICER

domain Booth & Partners
location_on Manila
trending_up PHP 3,000,000 - 4,000,000
access_time 28 days ago

SOFTWARE DEVELOPMENT TEAM LEAD

domain Amadeus
location_on Manila
trending_up PHP 3,000,000 - 4,000,000
access_time 4 days ago

DIGITAL PLATFORM - SENIOR WEB DEVELOPER

domain 1143 Navitaire Philippines INC
location_on Manila
trending_up PHP 3,000,000 - 4,000,000
access_time 12 days ago

DIGITAL PLATFORM - ASSOCIATE WEB DEVELOPER

domain 1143 Navitaire Philippines INC
location_on Manila
trending_up PHP 3,000,000 - 4,000,000
access_time 13 days ago

SENIOR SOFTWARE QA ENGINEERING ANALYST

domain 1143 Navitaire Philippines INC
location_on Manila
trending_up PHP 3,000,000 - 4,000,000
access_time 13 days ago

SOFTWARE DEVELOPMENT TEAM LEAD

domain 1143 Navitaire Philippines INC
location_on Manila
trending_up PHP 3,000,000 - 4,000,000
access_time 4 days ago

SOFTWARE DEVELOPMENT TEAM LEAD

domain Amadeus
location_on Manila
trending_up PHP 3,000,000 - 4,000,000
access_time 4 days ago

DIGITAL PLATFORM - SENIOR WEB DEVELOPER

domain 1143 Navitaire Philippines INC
location_on Manila
trending_up PHP 3,000,000 - 4,000,000
access_time 12 days ago

DIGITAL PLATFORM - ASSOCIATE WEB DEVELOPER

domain 1143 Navitaire Philippines INC
location_on Manila
trending_up PHP 3,000,000 - 4,000,000
access_time 13 days ago

SENIOR SOFTWARE QA ENGINEERING ANALYST

domain 1143 Navitaire Philippines INC
location_on Manila
trending_up PHP 3,000,000 - 4,000,000
access_time 13 days ago

SOFTWARE DEVELOPMENT TEAM LEAD

domain 1143 Navitaire Philippines INC
location_on Manila
trending_up PHP 3,000,000 - 4,000,000
access_time 4 days ago

SOFTWARE DEVELOPMENT TEAM LEAD

domain Amadeus
location_on Manila
trending_up PHP 3,000,000 - 4,000,000
access_time 4 days ago

keyboard_arrow_left
keyboard_arrow_right


EXCLUSIVE JOBS FOR EXPERTS AND EXECUTIVES


EXCLUSIVE JOBS FOR EXPERTS AND EXECUTIVES

We focus exclusively on the high-end job market. We analyze the job offers of
over 497,416 companies and headhunters and we inform you about the senior-level
positions suitable for you on a daily basis.

Try now for free

MARKETING DIRECTOR

trending_up USD 150,000 - 200,000
location_on New York
star

CFO / GENERAL MANAGER

trending_upEUR 150,000 - 175,000
location_onParis
star_border

VICE PRESIDENT OF SALES

trending_upEUR 100,000 - 150,000
location_onBerlin
star_border


MEET THE MOST IMPORTANT HEADHUNTERS FOR YOUR CAREER


MEET THE MOST IMPORTANT HEADHUNTERS FOR YOUR CAREER

Get access to 46,006 headhunters and their exclusive positions. In line with
your career goals, we will discreetly introduce you to the appropriate contacts.

Try now for free



OUR SALARY BENCHMARK HELPS YOU FIND JOBS WITH THE RIGHT SALARY


OUR SALARY BENCHMARK HELPS YOU FIND JOBS WITH THE RIGHT SALARY

We analyze and calculate the JobLeads salary benchmark for each position by
using extensive market data. You’ll receive an estimate of the potential
earnings in your field. This helps you correctly appraise your market value and
gives you an information advantage in salary negotiations.

Try now for free

WHAT IS YOUR DESIRED SALARY?

EUR 200,000 +
EUR 20,000



EXCLUSIVE INSIDER KNOWLEDGE OF THE HEADHUNTER MARKET


EXCLUSIVE INSIDER KNOWLEDGE OF THE HEADHUNTER MARKET

Our rankings and analyses provide you with detailed profiles of thousands of
headhunters, so you always know which contacts are promising for your career and
which are merely a waste of time.

Try now for free

TOP CONTACT FOR YOUR CAREER

PARIS

Match rate 96%
Job offers 136
View profile

TOP CONTACT FOR YOUR CAREER

NEW YORK

Match rate 98%
Job offers 153
View profile


OUR PREMIUM JOB SEARCH WITH UNIQUE SEARCH FILTERS


OUR PREMIUM JOB SEARCH WITH UNIQUE SEARCH FILTERS

Use exclusive search filters such as salary, scope of responsibilities, industry
or career level. Reduce the risk of missing an important career opportunity.

Try now for free

CAREER LEVEL 3/4

Vice President Specialist Head of Department Managing Director

FUNCTIONAL AREA 2/3

Management & Operations Sales Finance


FIND MORE EXECUTIVE POSITIONS

search Keyword, job title
location_on City
What is your desired salary?
EUR 200,000 +
EUR 20,000

Find job


NEW TOP POSITIONS AT JOBLEADS


FUNCTIONAL AREA

 * Bio & Pharmacology & Health
 * Consulting
 * Engineering
 * Finance
 * Human Resources
 * IT & Technology
 * Legal
 * Management & Operations
 * Marketing
 * Other
 * Sales


INDUSTRY

 * Automotive Industry
 * Biotech, Pharma & Chemistry
 * Consulting & Coaching
 * Consumer- and Luxury Goods & Fashion
 * Electrics & Electronics
 * Finance & Banking
 * Internet, Online Media & E-Commerce
 * IT & Software
 * Mechanical Engineering
 * Medicine
 * Transport & Logistics


LOCATION

 * Berlin
 * Hamburg
 * Munich
 * Cologne
 * Frankfurt
 * Stuttgart
 * Dusseldorf
 * Dortmund
 * Essen
 * Leipzig
 * Bremen


APPLY NOW

person First name
person_add Last name
mail Email address
lock Password
Start application

By clicking the „Start application" button you accept our Terms of use and
Privacy policy.


100%

Privacy policy

 * Safe
 * Protected
 * Certified


GET INSTANT ACCESS TO HEADHUNTERS AND PRE-SELECTED CAREER OPTIONS FROM OVER
400,000 SOURCES.

person First name
person_add Last name
mail Email address
lock Password
keyboard_arrow_down
location_on Country
 * Argentina
 * Australia
 * Austria
 * Bahrain
 * Belgium
 * Brazil
 * Canada
 * Chile
 * Colombia
 * Denmark
 * Finland
 * France
 * Germany
 * Hong Kong
 * India
 * Indonesia
 * Ireland
 * Italy
 * Kuwait
 * Malaysia
 * Mexico
 * Netherlands
 * New Zealand
 * Norway
 * Oman
 * Pakistan
 * Peru
 * Philippines
 * Poland
 * Portugal
 * Qatar
 * Saudi Arabia
 * Singapore
 * South Africa
 * Spain
 * Sweden
 * Switzerland
 * Turkey
 * United Arab Emirates
 * United Kingdom
 * United States
 * Venezuela

location_on Location
keyboard_arrow_down
trending_up Salary expectations
 * EUR 20,000 - 40,000
 * EUR 40,000 - 60,000
 * EUR 60,000 - 80,000
 * EUR 80,000 - 100,000
 * EUR 100,000 - 125,000
 * EUR 125,000 - 150,000
 * EUR 150,000 - 200,000
 * EUR 200,000 +

work
Functional area keyboard_arrow_down
Bio & Pharmacology & Health Consulting Engineering Finance Human Resources IT &
Technology Legal Management & Operations Marketing Other Sales Advertising
Agriculture & Crop Production Antitrust & Competition Law Arbitration
Architecture, Planning & Construction Art & Culture Assistance Audit, Taxes &
Accounting Automotive Engineering Aviation & Aerospace Banking & Lending
Biology, Biotech & Chemistry Business Development & Strategy Business
Engineering & Management Business Intelligence & Analysis Change Management &
Restructuring Charity Communication & PR Compensation & Benefits Compliance &
Regulatory Affairs Construction & Real Estate Law Controlling Copyright &
Intellectual Property Corporate Finance & Strategic Planning Corporate Law
Creative Customer Service Database, Analytics & BI Design & Development
E-Commerce Electrical & Energy Engineering Employment Law Engineering Consulting
Event Management Finance & Insurance Finance Consulting Finance, Financial
Services & Funds Financial Advice & Private Banking Food Production & Safety
General HR General Sales Health, Safety & Environment Healthcare Hospitality &
Leisure HR & Organizational Development HR Controlling HR Marketing & Recruiting
HR Services HR Strategy & Management Human Capital Industrial Property Rights
Insurance Consulting Investing & Investment Banking IT & Software Sales IT
Management & IT Project Management IT Sales IT, Technology & SAP Legal
Consulting Life Science & Pharmacology & Health Maintenance & Service Management
& Leadership Management & Strategy Manufacturing & Production Market Research &
Market Analysis Marketing & Sales Marketing Management Measurement & Control
Technology Mechanical Engineering and Toolmaking Media & Information Medical &
Pharmaceutical Sales Medical Teaching Medical Technology Medical, Bio &
Pharmaceutical Sales Mining & Raw Material Production Networks & Systems Online
Marketing Operations & Business Administration Other Legal Services Pharmacology
Physicians & Doctors Physics Plant, Facility & Center Management Plastics &
Process Engineering Pre & Post Sales Support Product & Brand Marketing Product
Management Professional Services Project & Process Management Public Law Public
Sector Public Sector, Administration & Politics Purchasing & Procurement Quality
Engineering Quality Management Quality Management & Operations Real Estate
Research, development and laboratory Restructuring & Insolvency Risk Management
& Quantitative Analysis Sales Management SAP Science, Research and Teaching
Software Architecture & Engineering Software Development Sports Supply Chain &
Logistics Supply Chain, Logistics & Transportation Tax Law Technical Sales
Technical Sales Engineering Technical Support & Administration Telecommunication
& Information Technology Textiles Trade, Import & Export Training & Coaching
Utilities Sector
Finance
Audit, Taxes & Accounting
Banking & Lending
Controlling
Corporate Finance & Strategic Planning
Finance & Insurance
Financial Advice & Private Banking
Investing & Investment Banking
Real Estate
Risk Management & Quantitative Analysis
Human Resources
Compensation & Benefits
General HR
HR & Organizational Development
HR Controlling
HR Marketing & Recruiting
HR Services
HR Strategy & Management
Legal
Antitrust & Competition Law
Arbitration
Construction & Real Estate Law
Copyright & Intellectual Property
Corporate Law
Employment Law
Finance, Financial Services & Funds
Industrial Property Rights
Other Legal Services
Public Law
Restructuring & Insolvency
Tax Law
Marketing
Advertising
Communication & PR
Creative
Event Management
Market Research & Market Analysis
Marketing Management
Media & Information
Online Marketing
Product & Brand Marketing
Bio & Pharmacology & Health
Biology, Biotech & Chemistry
Healthcare
Medical Teaching
Medical, Bio & Pharmaceutical Sales
Pharmacology
Physicians & Doctors
Research, development and laboratory
Management & Operations
Business Development & Strategy
Business Intelligence & Analysis
Change Management & Restructuring
Compliance & Regulatory Affairs
Customer Service
E-Commerce
Management & Leadership
Operations & Business Administration
Plant, Facility & Center Management
Product Management
Project & Process Management
Purchasing & Procurement
Quality Management & Operations
Supply Chain, Logistics & Transportation
Trade, Import & Export
Sales
General Sales
IT & Software Sales
Medical & Pharmaceutical Sales
Pre & Post Sales Support
Sales Management
Technical Sales
IT & Technology
Database, Analytics & BI
IT Management & IT Project Management
IT Sales
Networks & Systems
Professional Services
Quality Management
SAP
Software Architecture & Engineering
Software Development
Technical Support & Administration
Engineering
Architecture, Planning & Construction
Automotive Engineering
Aviation & Aerospace
Business Engineering & Management
Design & Development
Electrical & Energy Engineering
Maintenance & Service
Manufacturing & Production
Measurement & Control Technology
Mechanical Engineering and Toolmaking
Medical Technology
Mining & Raw Material Production
Physics
Plastics & Process Engineering
Quality Engineering
Technical Sales Engineering
Telecommunication & Information Technology
Other
Agriculture & Crop Production
Art & Culture
Assistance
Charity
Food Production & Safety
Health, Safety & Environment
Hospitality & Leisure
Public Sector, Administration & Politics
Science, Research and Teaching
Sports
Textiles
Training & Coaching
Utilities Sector
Consulting
Engineering Consulting
Finance Consulting
Human Capital
Insurance Consulting
IT, Technology & SAP
Legal Consulting
Life Science & Pharmacology & Health
Management & Strategy
Marketing & Sales
Public Sector
Supply Chain & Logistics
Start application

By clicking the „Start application" button you accept our Terms of use and
Privacy policy.


100%

Privacy policy

 * Safe
 * Protected
 * Certified

Jobleads
 * Site notice
 * Terms of use
 * Privacy policy
 * Help
 * Contact
 * Careers at JobLeads

© JobLeads 2023. All rights reserved.


LOG IN NOW.

THERE IS ALREADY AN ACCOUNT USING THIS EMAIL ADDRESS.

IF YOU KNOW YOUR PASSWORD, YOU CAN LOG IN HERE DIRECTLY.

mail Email address
lock Password

100%

Privacy policy

 * Safe
 * Protected
 * Certified

Log in
Have you forgotten your password? Click on "Reset password" and we will send you
a new password.
Reset password







WE USE WEBSITE COOKIES

By clicking “Accept All Cookies”, you agree to the storing of cookies on your
device to enhance site navigation, analyze site usage, and assist in our
marketing efforts. You can find more information under "Cookie Settings" as well
as in our privacy policy.

Cookies Settings Reject All Accept All Cookies