Grazie lucavizzi ma funziona esattamente al contrario, se seleziono ITALIA il campo text non è obbligatorio ..... invece per me deve essere obbligatorio

codice:
<form name="Autenticazione" method="post" action="" tmt:validate="true">
<select name="Select1" id="Nazione">
<option value="GERMANIA">Germania</option>
<option value="ITALIA">Italia</option>
<option value="FRANCIA">Francia</option>
</select>
<input type="text" name="newmeal" id="newmeal" tmt:required="dependonbox" tmt:message="Please enter the special meal's name" />
<input type="submit" value="Submit" />
</form>

<script type="text/javascript">
function dependonbox (fieldNode){
	var relatedBox = document.getElementById("Nazione");
	var isRequired = relatedBox.value;
	if(isRequired=='ITALIA' && fieldNode.value == ""){
		return false;
	}
	return true;
}
</script>