function setSubLevel(rpcFile, parentId, childId) {
	if(parentId == "0") {
		// Hide the suggestion box.
		//$('#suggestions').hide();
	} else {
		$.post(rpcFile, {parentId: ""+ parentId +""}, function(data){
			if(data.length >0) {
				$('#' + childId).html(data);
			}
		});
	}
} 

function setSubLevelFaiblesse(rpcFile, parentId, childId) {
	if(parentId !== "") {
		$.post(rpcFile, {parentId: ""+ parentId +"", childId: ""+childId + ""}, function(data){
			if(data.length >0) {
				$('#' + childId).html(data);
			}
		});
	}
}

function setSubLevelMetro(rpcFile, parentId, childId) {
	if(parentId == "0") {
		// Hide the suggestion box.
		//$('#suggestions').hide();
	} else {
		$.post(rpcFile, {parentId: ""+ parentId +""}, function(data){
			if(data.length >0) {
				$('#' + childId).html(data);
			}
		});
	}
} 
function setSubLevelEcole(rpcFile, parentId, childId) {
	if(parentId == "0") {
		// Hide the suggestion box.
		//$('#suggestions').hide();
	} else {
		$.post(rpcFile, {parentId: ""+ parentId +""}, function(data){
			if(data.length >0) {
				$('#' + childId).html(data);
			}
		});
	}
} 