$(document).ready(function()
{
	$('li div.list a').click(function()
	{
		var id = $('select#' + $(this).attr('id')).val();
		
		if (id != 0)
			$(location).attr('href', 'liste-depart.php?id=' + id);
	});
});