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 validation works, not the second. What is wrong here?