$(document).ready(function(){
	if( $("option:selected").is(".open"))
		$(".no").show();
	else
		$(".no").hide();

$(function(){
	$("#type").change(function () {
			$("option").each(function () {
			if( $("option:selected").is(".open"))
				$(".no").fadeIn();
			else
				$(".no").fadeOut();
			});
		});
	});
});

$(function(){
	$(".input-area")
		.focus(function(){
			$(this).addClass("focus");
		})
		
		.blur(function(){
			$(this).removeClass("focus");
		});
});