function changeStatusAddress(basketID, address) {
	var dataSent = "&address=" + address;
	var url = "modules/filemanage/fileManage_changeStatusAddress.php?id=" + basketID  ;
	var xhr_object = null;
    xhr_object = new XMLHttpRequest();
	xhr_object.open("POST", url, true);
    xhr_object.onreadystatechange = function() {
		// remplacer le input par une liste de suggestion
		if (xhr_object.readyState == 4) {
			//alert(xhr_object.responseText);
		}
    }
	xhr_object.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
	xhr_object.send(dataSent);
}