jQuery(document).ready(function($){
	$('.claims .form-row #manfacturer').change(function(){
		if($("#photo_req_"+$(this).val()).val()=="true"){
			$('.problemitems th #image-optional').text('*');
		}else{
			$('.problemitems th #image-optional').text('');
		}
	});
	if($("#photo_req_"+$('.claims .form-row #manfacturer').val()).val()=="true"){
		$('.problemitems th #image-optional').text('*');
	}else{
		$('.problemitems th #image-optional').text('');
	}
});
