$(document).ready(function() {

    $(".frm-input").each(function() {
        if ($(this).val() != "") {
            $(this).prev().hide();
        }else{
            $(this).prev().show();
        }
    });

    $(".frm-input")
    .click(function() {
        if ($(this).val() == "") {
            $(this).prev().hide();
        }
    })
    .focus(function() {
        if ($(this).val() == "") {
            $(this).prev().hide();
        }
    })
    .blur(function() {
        if ($(this).val() == "") {
            $(this).prev().show();
        }
    });

	$(".label-select").each(function(i){  
		var h   = $(this).outerHeight();  
		var w   = $(this).outerWidth(); 
		var iframe  = '<!--[if IE 6]><iframe src="javascript:false;" style="height: ' + h + 'px; width: ' + w + 'px" class="selectOverlap"></iframe><![endif]-->'  
		$(this).prepend(iframe);  
	});  
 

});