/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function onchange_type(type_id){
    $.get("ajax/ajax.php",
      {"action":"get_sectors","type_id":type_id},
      function(data)
          {
              $("#sector_holder").html(data);
          });

    onchange_sector(0);

}

function onchange_sector(sector_id){

    var type_id = $("#job_type").attr("value");

    $.get("ajax/ajax.php",
      {"action":"get_regions","type_id":type_id,"sector_id":sector_id},
      function(data)
          {
              $("#region_holder").html(data);
          });

}
