Есть ли способ отправить форму, когда установлен флажок?
<form id="formName" action="<?php echo $_SERVER['PHP_SELF'];?>" method="get">
    <input type ="checkbox" name="cBox[]" value = "3">3</input>
    <input type ="checkbox" name="cBox[]" value = "4">4</input>
    <input type ="checkbox" name="cBox[]" value = "5">5</input>
    <input type="submit" name="submit" value="Search" />
</form>
<?php
    if(isset($_GET['submit'])){
        include 'displayResults.php';
    }
?>
Это то, что у меня есть в настоящее время, но я хотел бы отправить форму без кнопки отправки, когда пользователь проверяет или отменяет флажок. Любая помощь?
