Ho fatto la prova sul form demo di chronoforms ho modificato solo questi custom code
in On submit
<?php
$app=JFactory::getApplication();
$app->redirect('http://'.$form->data['club']);
?>
in On load_clubs
<?php
$clubs = array(
"ENG" => array("www.arsenal.com" => "Arsenal", "www.chelsea.com" => "Chelsea", "Liverpool" => "Liverpool", "Manchester" => "Manchester"),
"GER" => array("Bayern Munchen1" => "Bayern Munchen", "Dortumund" => "Dortumund", "Shalcke" => "Shalcke"),
"ITA" => array("Juventus" => "Juventus", "AC Milan" => "AC Milan", "Inter" => "Inter", "Roma" => "Roma", "Napoli" => "Napoli"),
"ESP" => array("Real Madrid" => "Real Madrid", "Barcelona" => "Barcelona", "Valencia" => "Valencia"),
);
echo json_encode($clubs[$form->data["league"]]);
tutto funziona regolarmente