J = jQuery.noConflict();

J(function() {
	
	J('#categorySelect').change(function(event) {
		J.ajax({
				type: "GET",
				url: '/index.php/jobs/filterSearchUpdate/' + J('#categorySelect').val(),
				success: function(data, status, xhr) {
					J('#titleSelect').html(data);
					return false;
				}
			});
		return false;
	});
	
	if(J('#titleSelect').val() == 0)
	{
		J.ajax({
			type: "GET",
			url: '/index.php/jobs/filterSearchUpdate/' + J('#categorySelect').val(),
			success: function(data, status, xhr) {
				J('#titleSelect').html(data);
				return false;
			}
		});
	}
});