Haber si resuelve tu problema:
Código PHP:
valor1= $("#Combobox1").val();
$.ajax({
type: 'POST',
data: 'datos=' + valor1, //Prueba asi
dataType: "json",
url: 'Busqueda.php',
}).done(function(respuesta){
var oTable = $("#dataTable").dataTable();
oTable.fnClearTable();
oTable.fnDestroy();
$('#dataTable').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "../Busqueda.php",
});
});
}