returns

How to add two "on submit=" values to a form?

I am trying to validate my form using two separate JavaScript functions: <form onsubmit="return formCheck(this); return validate_dropdown();" action="somepage.php" method="post" name="something"> When I add just one on submit value, each function works fine individually, when I add two only the first function's v...