function ChangeCompany (companyid) {
	$('select.models_menu[id!='+companyid+']').hide();
	$('select.models_menu[id='+companyid+']').show();
}

function CreateURLTitle (text) {
	text = text.replace(/ /g,'_');
	text = text.replace(/\./g,'');
	
	return text;
}

$(function() {
	$('select.models_menu').change(function() {
		var model = $(this).find(':selected').text();
		window.location='/models/'+$(this).val()+'/'+CreateURLTitle(model);
	});
});

