Я использую следующее, чтобы отключить, пока не будет выбрано первое текстовое поле, но как добавить дополнительные флажки, так как у меня всего 4
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js" type="text/javascript"></script>
<script language="javascript">
$(document).ready(function(){
//Disable the "Save" button initially
$("input[value$='Save']").attr('disabled', true);
//alert('jQuery Works');
//Enable-Disable "Save" button based on "I Agree" checkbox value!
$("input[title$='checkbox field name here']").click(function(){
if(this.checked)
{
$("input[value$='Save']").attr('disabled', false);
}
else
{
$("input[value$='Save']").attr('disabled', true);
}
});
});
</script>