jQuery(document).ready(function () {
								 
	jQuery("#txt-assunto").attr("value","");
	jQuery("#mdd-assunto option[value='0']").attr('selected', 'selected');
	jQuery("#div-txt-assunto").css("display","none");
	
	jQuery("#mdd-assunto").change(function () {
		jQuery("#mdd-assunto option:selected").each(function () {
			var selected = jQuery(this).attr("value");

			if(selected=="Otros") {
				jQuery("#div-txt-assunto").css("display","block");
				jQuery("#your-subject").attr("value","");
			}
			else {
				jQuery("#div-txt-assunto").css("display","none");
				jQuery("#txt-assunto").attr("value","");
				value = selected;
				jQuery("#your-subject").attr("value",value);
			}
		 });
	}).change();
	
	jQuery("#txt-assunto").keyup(function(event){
		value = jQuery("#txt-assunto").attr("value");
		jQuery("#your-subject").attr("value",value);
	});
		
});