si habia un grosero error de sintaxis...
para asegurar modifica el id de los checkbox de esta forma
Código HTML:
<input name="tour[]" type="checkbox" class="stcajatexto" id="tour0" value="Cusco">
<input name="tour[]" type="checkbox" class="stcajatexto" id="tour1" value="Otrovalor">
y luego algo asi...
function get(obj) {
var poststr = "Nombre=" + encodeURI( document.getElementById("Nombre").value ) +
"&Correo=" + encodeURI( document.getElementById("Correo").value )+
"&Otros=" + encodeURI( document.getElementById("Otros").value );
for (i=0; i<=3; i++)
{
poststr = poststr + "&tour[" + i + "] = " + encodeURI( document.getElementById("tour"+i).value );
}
poststr = poststr + "&capt=" + encodeURI( document.getElementById("capt").value )+
"&Submit=" + encodeURI( document.getElementById("Submit").value );
makePOSTRequest('captcha/c-envio-prueba.php', poststr);
}
verifica que no haya error de sintaxis...