alet('ok');
	function getN(ids,loc,n){
		
			$.post('modules/sous_categorie.php', {ha:$('#'+ids).val(),n:n}, function(data){
				$('#'+loc).html(data);
				$('#ob').hide();
			});
		return true;
	}

function lookup(inputString,id,opt) {
	
	if(inputString.length == 0) {
		$('#suggestions'+id).fadeOut(); // Hide the suggestions box
	} else {
		$.post("modules/ajax.php", {queryString: ""+inputString+"",opt:opt}, function(data) { // Do an AJAX call
			$('#suggestions'+id).fadeIn(); // Show the suggestions box
			$('#suggestions'+id).html(data); // Fill the suggestions box
		});
	}
	
}
function fill(lol,id){
	$('#cat'+id).val(lol);
	$('#suggestions'+id).fadeOut();
}
function lookup2(inputString,id,opt) {
	
	if(inputString.length == 0) {
		$('#suggestions2'+id).fadeOut(); // Hide the suggestions box
	} else {
		$.post("modules/ajax.php", {queryString: ""+inputString+"",opt:opt}, function(data) { // Do an AJAX call
			$('#suggestions2'+id).fadeIn(); // Show the suggestions box
			$('#suggestions2'+id).html(data); // Fill the suggestions box
		});
	}
	
}
