Código HTML:
 <input name="tour[]" type="checkbox" class="stcajatexto" id="tour0" value="Cusco"> y asi lo declare el js:
Código PHP:
   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);
        }
 
   function write_captcha(){
        define('Nombre', 'string', 'Nombre');
        define('Correo', 'email', 'E-mail');
       clicks++;
       document.getElementById('capt').value        = ''
      document.getElementById('captcha_id').innerHTML = '<img src="captcha/captcha_img.php?clicks=' + clicks + '" border="0" alt="" /><a href="#" onclick="write_captcha();"><img src="gifs/refresh.gif" border="0" alt="" /></a>';
   return false;
   } 
    Código PHP:
   <?
        session_start();
        
        $email_recipient     = '[email protected]';
 
        error_reporting(0);
        include("class/captchaZDR.php");
 
        $capt = new captchaZDR;
        $wrong_captcha     = '';
 
        if(isset($_POST['Submit']) and $capt->check_result()){        
              $message_send = "Mensaje desde la página\n\n      
              Nombre: ".$_POST['Nombre']." \n
              Correo: ".$_POST['Correo']." \n
                Otros: ".$_POST['Otros']." \n"
              foreach ($_POST['tour'] as $id){
                   echo $id."<br>";
                }
                ;
 
                $headers .= 'To: <'.$email_recipient.'>' . "\r\n";
                $headers .= 'From: '.$_POST['Nombre'].' <'.$_POST['Correo'].'>' . "\r\n";
 
            if(mail($email_recipient, 'SOLICITUD DE INFORMACION PERU EXPEDITIONS' , $message_send, $headers))
                        header ("Location: http://www.peru-expeditions.com/c-gracias.html");
                else 
                        echo '<div style="color: red"><strong>Hubo un problema en el mensaje. Por favor, inténtelo de nuevo. Gracias.</strong></div>';  
        } 
        
        else{if(isset($_POST['Submit']) and (!$capt->check_result()) ) 
                echo '<div style="color: red"><b>Intente de nuevo. Actualizar:</b><a href="#" onclick="write_captcha();"><img src="gifs/refresh.gif" border="0" alt="" /></a></div>';
        }
?>    
 
 
