// Please note: http://docs.jquery.com/Using_jQuery_with_Other_Libraries
jQuery.noConflict();
     
// Put all your code in your document ready area
jQuery(document).ready(function($){

//  ***************************************************
//  * @purpose: jumpto company detail page
//  * @author:  robert.leurs@cooloxygen.com
//  * @version: 1.0 / dd.26.03.2009
//  ***************************************************

    $('#companie').change(function () {
        var val_company = document.getElementById("companie").value;
        window.location = '/' + val_company;
    });

});