$(document).ready(function(){
	
	$("#EntitySubject").change(function(){
		$("#EntitySubject option:selected").each(function(){
			//alert($(this).val());
			if($(this).val() == 1){
				$(".text_input_telephone").show();
				$(".text_input_company").show();
				$(".text_input_mesaj textarea").animate( { height:"50"}, 0 )
			}else{
				$(".text_input_telephone").hide();
				$(".text_input_company").hide();
				$(".text_input_mesaj textarea").animate( { height:"115"}, 0 )
			}
		});
		
		
	})
	
	.trigger('change');
	
})