// JavaScript Document
window.addEvent( 'domready', function() {
    if($('cat')){
        $('cat').addEvent( 'change', function(e) {
            var url = "components/com_jobline/ajax/categories.php?cat_id=" + $('cat').getValue();

            new Ajax(url, {
          		method: 'get',
          		update: $('ajax-container')
          	}).request();
          }
        );
    }
    if($('id_cat')){
        $('id_cat').addEvent( 'change', function(e) {
            var url = "components/com_jobline/ajax/categories.php?cat_id=" + $('id_cat').getValue() + "&isReq=1";

            new Ajax(url, {
          		method: 'get',
          		update: $('ajax-container')
          	}).request();
          }
        );
    }
    if($('sel_ville')) {
      $('sel_ville').addEvent( 'change', function(e) {
            $('form_annuaire').submit();
          }
        );
    }
});
